Class InstrumentationCreateStateParameters
- java.lang.Object
-
- graphql.execution.instrumentation.parameters.InstrumentationCreateStateParameters
-
@PublicApi public class InstrumentationCreateStateParameters extends java.lang.Object
Parameters sent toInstrumentation
methods
-
-
Field Summary
Fields Modifier and Type Field Description private ExecutionInput
executionInput
private GraphQLSchema
schema
-
Constructor Summary
Constructors Constructor Description InstrumentationCreateStateParameters(GraphQLSchema schema, ExecutionInput executionInput)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecutionInput
getExecutionInput()
GraphQLSchema
getSchema()
-
-
-
Field Detail
-
schema
private final GraphQLSchema schema
-
executionInput
private final ExecutionInput executionInput
-
-
Constructor Detail
-
InstrumentationCreateStateParameters
public InstrumentationCreateStateParameters(GraphQLSchema schema, ExecutionInput executionInput)
-
-
Method Detail
-
getSchema
public GraphQLSchema getSchema()
-
getExecutionInput
public ExecutionInput getExecutionInput()
-
-