Commit Graph

57 Commits

Author SHA1 Message Date
Rossen Stoyanchev
e22d3e8ea4 Add GraphQLTester
See gh-43
2021-04-15 13:00:20 +01:00
Rossen Stoyanchev
645cf21f17 Update dependencies 2021-04-14 21:24:04 +01:00
Rossen Stoyanchev
b35e5f8c2f WebOutput minor updates
Rename "headers" to "responseHeaders" and clarify those work for HTTP
request queries but not for queries over a WebSocket session.

Update getter for response headers to return a read-only wrapper.

Provide only one public constructor without headers.

See gh-42
2021-04-09 13:05:40 +01:00
Rossen Stoyanchev
ddf107f8b1 WebInput minor refactoring
Use getters so the base RequestInput is usable for JSON serialization,
e.g. for the testing support.

Remove WebSocketMessageInput which only had an extra requestId and
add that to WebInput instead.

See gh-42
2021-04-09 13:05:40 +01:00
Rossen Stoyanchev
4a18932941 Revise GraphQLRequestHandler
Rename to GraphQLService to make it more clear it is a layer below
the specific transport such as HTTP endpoints.

Add WebGraphQLService sub-interface for query execution in web
environment with a WebInterceptor chain.

See gh-42
2021-04-09 08:43:57 +01:00
Rossen Stoyanchev
0338607a9b Parameterize GraphQLRequestHandler
This makes the contract more general and applicable to any GraphQL
request, not necessary coupled to HTTP.

Closes gh-42
2021-04-08 20:37:01 +01:00
Rossen Stoyanchev
b378231d39 Add GraphQLRequestHandler
See gh-42
2021-04-08 20:37:01 +01:00
Brian Clozel
b48cacb10a Build projects with JDK8 target
Closes gh-36
2021-03-05 15:31:21 +01:00
Andreas Marek
6440b8b0c9 Upgrade GraphQL Java to 16.2
Closes gh-29
2021-02-02 08:08:52 +00:00
Rossen Stoyanchev
2f52e35050 Support for subscriptions with WebMvc and spring-websocket 2021-02-01 22:38:52 +00:00
Rossen Stoyanchev
63dc81c922 Polishing and minor fix to remove Subscription 2021-02-01 22:17:27 +00:00
Rossen Stoyanchev
49c5caf71d Add rejection for apollographql/subscriptions-transport-ws 2021-01-19 21:17:02 +00:00
Rossen Stoyanchev
c82171897e Polishing 2021-01-19 21:15:22 +00:00
Rossen Stoyanchev
ef33e5ea52 Minor refactoring in WebSocketMessageInput
Decouple from HandshakeInfo which is WebFlux specific.
Rename the class to WebSocketMessageInput since it's per message.
Use more specific name for id field based on the protocol.
2021-01-18 21:33:10 +00:00
Rossen Stoyanchev
5a77b93671 Minor refactoring in GraphQLWebSocketHandler
The subscriptions map is now per session and not global.
The rest is polishing.
Minor refactoring
2021-01-18 21:33:10 +00:00
Andreas Marek
b1a11973c4 upgrade to graphql java 16.1
Closes gh-25
2021-01-18 08:37:13 +00:00
Rossen Stoyanchev
bbb0d98511 Complete fix for "connection_init" not having id
Closes gh-27
2021-01-17 22:05:33 +00:00
Andreas Marek
edcd801c8c id is not required on every message (notably init) 2021-01-17 09:38:40 +11:00
Brian Clozel
633ee1a1b5 Refactor project structure
This commit refactors the project structure to regroup GraphQL web
support under the spring-graphql-web module, and move all the Spring
Boot support classes under a single graphql-spring-boot-starter one.

Right now, the starter module contains everything: classes for MVC,
WebFlux and Actuator support as well as required dependencies. We will
change that in the future.
2021-01-05 16:35:34 +01:00
Brian Clozel
3e8027a0ca Upgrade to Spring Boot 2.4.1 2021-01-05 13:12:47 +01:00
Brian Clozel
c6d75f57d7 Load GraphQL schema as a Resource 2021-01-05 11:20:05 +01:00
Rossen Stoyanchev
63065d4e8e Create webflux and webmvc sub-packages under ~.graphql
Allows simpler and consistent names for HTTP and WebSocket handler
classes for webmvc and webflux.
2021-01-03 21:40:23 +00:00
Rossen Stoyanchev
2e32a06a55 Update to latest GraphQL over WebSocket protocol 2021-01-03 21:40:19 +00:00
Rossen Stoyanchev
bb9d1dc300 Extract WebSocketHandler to top-level class 2021-01-03 21:38:08 +00:00
Rossen Stoyanchev
fd9151adec Add logging in GraphQL handlers 2020-11-29 18:53:33 +00:00
Rossen Stoyanchev
b10d5f7df7 Add support for subscriptions over WebSocket in WebFlux 2020-11-29 18:53:05 +00:00
Rossen Stoyanchev
1dc38c8323 Avoided repeated Resource resolution of graphiql page 2020-11-16 21:46:35 +00:00
Brian Clozel
f711dad1b6 Introduce GraphiQL integration
This commit adds a very simple graphiQL integration: we're shipping the
project with a sample graphiQL `index.html` page that's relying on CDNs
to display the explorer.
We're also plugging in that resource at the graphQL endpoint location,
responding to GET requests. This is not a problem since for now we're
only considering POST requests to the endpoint for actual queries.

Closes gh-12
2020-11-13 11:52:13 +01:00
Brian Clozel
ce8ac6fc54 Fix null variables in WebInput
The graphQL spec requires that the `variables` object should not be
null. Prior to this commit, the `Map#getOrDefault` call would not
prevent that since it returns the value associated with the key, if
defined, or the default value. In our case the key is defined but the
value is null.
2020-11-13 11:52:09 +01:00
Brian Clozel
96d26b4dec Polish 2020-11-13 11:52:04 +01:00
Brian Clozel
43ba3e8fcd Remove GraphQL web starters
The GraphQL Spring Boot starters aren't actually necessary.
The typical GraphQL usage is really tied to the type of web application
you're building: Spring MVC or WebFlux.

Adding the `spring-graphql-web` dependency to the classpath is a signal
strong enough that we can configure additional endpoints into the web
application.

Closes gh-17
2020-11-13 11:51:49 +01:00
Brian Clozel
59d75a948e Add initial Metrics support
This commit provides an initial instrumentation for metrics support
with micrometer. The graphQL `SimpleInstrumentation` is used to
intercept query execution and collect execution time as well as specific
tags.

The set and names of metrics and tags are temporary and we should refine
this infrastructure.

Closes gh-16
2020-11-13 11:51:33 +01:00
Brian Clozel
18f44efe6d Rename and document GraphQL properties 2020-10-13 18:15:20 +02:00
Brian Clozel
22cdc3a28f Add missing package-info 2020-10-13 18:05:08 +02:00
Brian Clozel
95bfe2e318 Support programmatic GraphQLSchema creation
Prior to this commit, the `GraphQLAutoConfiguration` would only consider
the case where the GraphQL schema is read as an SDL from a configured
location.

GraphQL also supports the programmatic creation of the schema and this
case needs to be supported by the auto-configuration.

This commit updates the auto-configuration to disable the schema
creation from the SDL if a `GraphQL.Builder` bean is already contributed
by the application.

Fixes gh-4
2020-10-13 16:16:35 +02:00
Andreas Marek
d22d9c41a9 Restrict content to application json
Closes gh-8
2020-10-13 10:18:18 +02:00
Andreas Marek
d0324b8344 Make url configurable and set default to /graphql
Closes gh-9
2020-10-13 09:59:14 +02:00
Rossen Stoyanchev
7eafec25e3 Support for response headers through WebOutput
See gh-6
2020-10-07 21:36:34 +01:00
Rossen Stoyanchev
d4b9c4750d Polishing WebOutput
See gh-6
2020-10-07 21:13:20 +01:00
Rossen Stoyanchev
cf1e3ce0da Upgrade to Spring Boot 2.4 snapshots
in order to make use of a recent change for WebMvc.fn in
Spring Framework 5.3.

See gh-6
2020-10-07 20:13:34 +01:00
Rossen Stoyanchev
b5d4fe18ab Javadoc updates and rename WebInterceptorExecution 2020-09-28 11:18:42 +01:00
Rossen Stoyanchev
1f1ce72272 Add WebInterceptorExecution
Arguably a better way to encapsulate support for WebInterceptor vs a
base class, more testable, and reduced public API surface.
2020-09-18 22:25:00 +01:00
Rossen Stoyanchev
40a79ab71a Polishing 2020-09-18 17:44:21 +01:00
Rossen Stoyanchev
b0b10dd8d3 Add tests for bad input 2020-09-18 14:36:26 +01:00
Rossen Stoyanchev
6044017d31 Support for invocation of interceptors 2020-09-18 12:55:19 +01:00
Rossen Stoyanchev
e8a8334009 Updates to Interceptor contract 2020-09-18 11:37:40 +01:00
Rossen Stoyanchev
0e9afb392a Add license headers 2020-09-17 19:25:03 +01:00
Rossen Stoyanchev
aabe780e9a Consistent naming, simplified package structure 2020-09-17 18:52:35 +01:00
Rossen Stoyanchev
8dc56ceaa5 Refine input exception handling and validation 2020-09-17 18:52:35 +01:00
Rossen Stoyanchev
42464b6748 Minor refactoring and polishing
- Remove (unused) GraphQLResponseBody

- Collapse servlet and reactive packages and rename handlers to
  WebFluxGraphQLHandler and WebMvcGraphQLHandler.

- Minor refactoring and polishing in each handler also removing some
  protected methods that overlap in purpose.

- Rename GraphQLRequestBody to RequestInput and make it package private.
2020-09-16 21:10:30 +01:00