Merge branch '1.1.x'

This commit is contained in:
rstoyanchev
2023-02-20 18:22:54 +00:00
5 changed files with 83 additions and 11 deletions

View File

@@ -223,6 +223,17 @@ Once `ExecutionGraphQlServiceTester` is created, you can begin to
<<testing.requests, execute requests>> using the same API, independent of the underlying
transport.
`ExecutionGraphQlServiceTester.Builder` provides an option to customize `ExecutionInput` details:
[source,java,indent=0,subs="verbatim,quotes"]
----
GraphQlService service = ... ;
ExecutionGraphQlServiceTester tester = ExecutionGraphQlServiceTester.builder(service)
.configureExecutionInput((executionInput, builder) -> builder.executionId(id).build())
.build();
----
[[testing.webgraphqltester]]
=== `WebGraphQlHandler`