Modifier and Type | Method and Description |
---|---|
GraphQL.Builder |
GraphQL.Builder.instrumentation(Instrumentation instrumentation) |
Modifier and Type | Class and Description |
---|---|
class |
MaxQueryComplexityInstrumentation
Prevents execution if the query complexity is greater than the specified maxComplexity.
|
class |
MaxQueryDepthInstrumentation
Prevents execution if the query depth is greater than the specified maxDepth.
|
Modifier and Type | Method and Description |
---|---|
Instrumentation |
ExecutionContext.getInstrumentation() |
Modifier and Type | Method and Description |
---|---|
ExecutionContextBuilder |
ExecutionContextBuilder.instrumentation(Instrumentation instrumentation) |
Constructor and Description |
---|
Execution(ExecutionStrategy queryStrategy,
ExecutionStrategy mutationStrategy,
ExecutionStrategy subscriptionStrategy,
Instrumentation instrumentation) |
Modifier and Type | Class and Description |
---|---|
class |
ChainedInstrumentation
This allows you to chain together a number of
Instrumentation implementations
and run them in sequence. |
class |
SimpleInstrumentation
An implementation of
Instrumentation that does nothing. |
Modifier and Type | Method and Description |
---|---|
List<Instrumentation> |
ChainedInstrumentation.getInstrumentations() |
Constructor and Description |
---|
ChainedInstrumentation(List<Instrumentation> instrumentations) |
Modifier and Type | Class and Description |
---|---|
class |
DataLoaderDispatcherInstrumentation
This graphql
Instrumentation will dispatch
all the contained DataLoader s when each level of the graphql
query is executed. |
Modifier and Type | Class and Description |
---|---|
class |
FieldValidationInstrumentation
This
Instrumentation allows you to validate the fields
of the query before the query is executed. |
Modifier and Type | Class and Description |
---|---|
class |
TracingInstrumentation
This
Instrumentation implementation uses TracingSupport to
capture tracing information and puts it into the ExecutionResult |
Copyright © 2019. All rights reserved.