Uses of Class
graphql.GraphQLContext.Builder
-
Packages that use GraphQLContext.Builder Package Description graphql -
-
Uses of GraphQLContext.Builder in graphql
Methods in graphql that return GraphQLContext.Builder Modifier and Type Method Description static GraphQLContext.Builder
GraphQLContext. newContext()
Creates a new GraphqlContext builderGraphQLContext.Builder
GraphQLContext.Builder. of(GraphQLContext graphQLContext)
Adds all of the values in the map into the context builder.GraphQLContext.Builder
GraphQLContext.Builder. of(GraphQLContext.Builder graphQLContextBuilder)
Adds all of the values in the map into the context builder.GraphQLContext.Builder
GraphQLContext.Builder. of(java.lang.Object key1, java.lang.Object value1)
GraphQLContext.Builder
GraphQLContext.Builder. of(java.lang.Object key1, java.lang.Object value1, java.lang.Object key2, java.lang.Object value2)
GraphQLContext.Builder
GraphQLContext.Builder. of(java.lang.Object key1, java.lang.Object value1, java.lang.Object key2, java.lang.Object value2, java.lang.Object key3, java.lang.Object value3)
GraphQLContext.Builder
GraphQLContext.Builder. of(java.lang.Object key1, java.lang.Object value1, java.lang.Object key2, java.lang.Object value2, java.lang.Object key3, java.lang.Object value3, java.lang.Object key4, java.lang.Object value4)
GraphQLContext.Builder
GraphQLContext.Builder. of(java.lang.Object key1, java.lang.Object value1, java.lang.Object key2, java.lang.Object value2, java.lang.Object key3, java.lang.Object value3, java.lang.Object key4, java.lang.Object value4, java.lang.Object key5, java.lang.Object value5)
GraphQLContext.Builder
GraphQLContext.Builder. of(java.util.Map<?,java.lang.Object> mapOfContext)
Adds all of the values in the map into the context builder.GraphQLContext.Builder
GraphQLContext.Builder. put(java.lang.Object key1, java.lang.Object value1)
GraphQLContext.Builder
GraphQLContext.Builder. putAll(java.util.Map<?,java.lang.Object> mapOfContext)
Adds all of the values in the map into the context builder.private GraphQLContext.Builder
GraphQLContext.Builder. putImpl(java.lang.Object... kvs)
Methods in graphql with parameters of type GraphQLContext.Builder Modifier and Type Method Description ExecutionInput.Builder
ExecutionInput.Builder. context(GraphQLContext.Builder contextBuilder)
Deprecated.- theExecutionInput.getGraphQLContext()
is a fixed mutable instance nowGraphQLContext.Builder
GraphQLContext.Builder. of(GraphQLContext.Builder graphQLContextBuilder)
Adds all of the values in the map into the context builder.GraphQLContext
GraphQLContext. putAll(GraphQLContext.Builder contextBuilder)
Puts all of the values into the contextMethod parameters in graphql with type arguments of type GraphQLContext.Builder Modifier and Type Method Description ExecutionInput.Builder
ExecutionInput.Builder. context(java.util.function.UnaryOperator<GraphQLContext.Builder> contextBuilderFunction)
Deprecated.- theExecutionInput.getGraphQLContext()
is a fixed mutable instance nowExecutionInput.Builder
ExecutionInput.Builder. graphQLContext(java.util.function.Consumer<GraphQLContext.Builder> builderFunction)
This will give you a builder ofGraphQLContext
and any values you set will be copied into the underlyingGraphQLContext
of this execution inputstatic GraphQLContext
GraphQLContext. of(java.util.function.Consumer<GraphQLContext.Builder> contextBuilderConsumer)
Creates a new GraphqlContext with the map of context added to itGraphQLContext
GraphQLContext. putAll(java.util.function.Consumer<GraphQLContext.Builder> contextBuilderConsumer)
Puts all of the values into the context
-