Package io.leangen.graphql.execution
Class InvocationContext.Builder
- java.lang.Object
-
- io.leangen.graphql.execution.InvocationContext.Builder
-
- Enclosing class:
- InvocationContext
public static class InvocationContext.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InvocationContextbuild()InvocationContext.BuilderwithArguments(Object[] arguments)InvocationContext.BuilderwithOperation(Operation operation)InvocationContext.BuilderwithResolutionEnvironment(ResolutionEnvironment resolutionEnvironment)InvocationContext.BuilderwithResolver(Resolver resolver)
-
-
-
Method Detail
-
withOperation
public InvocationContext.Builder withOperation(Operation operation)
-
withResolver
public InvocationContext.Builder withResolver(Resolver resolver)
-
withResolutionEnvironment
public InvocationContext.Builder withResolutionEnvironment(ResolutionEnvironment resolutionEnvironment)
-
withArguments
public InvocationContext.Builder withArguments(Object[] arguments)
-
build
public InvocationContext build()
-
-