Shorten GraphQlResponse[Field|Error] and rename GraphQlService

Rename GraphQlService to ExecutionGraphQlService following the renaming
of the request and response to ExecutionGraphQl[Request|Response].

See gh-332
This commit is contained in:
rstoyanchev
2022-03-20 20:47:15 +00:00
parent 67711f7331
commit 91e7f285fa
43 changed files with 168 additions and 164 deletions

View File

@@ -179,7 +179,7 @@ connection closed, e.g. after a test runs.
Many times it's enough to test GraphQL requests on the server side, without the use of a
client to send requests over a transport protocol. To test directly against a
`GraphQlService`, use the `GraphQlServiceTester` extension:
`ExecutionGraphQlService`, use the `GraphQlServiceTester` extension:
[source,java,indent=0,subs="verbatim,quotes"]
----
@@ -197,7 +197,7 @@ a client. However, in some cases it's useful to involve server side transport
handling with given mock transport input.
The `WebGraphQlHandlerTester` extension lets you processes request through the
`WebInterceptor` chain before handing off to `GraphQlService` for request execution:
`WebInterceptor` chain before handing off to `ExecutionGraphQlService` for request execution:
[source,java,indent=0,subs="verbatim,quotes"]
----