Uses of Class
graphql.schema.GraphQLCodeRegistry
-
Packages that use GraphQLCodeRegistry Package Description graphql.execution graphql.execution.directives graphql.schema graphql.schema.idl -
-
Uses of GraphQLCodeRegistry in graphql.execution
Methods in graphql.execution with parameters of type GraphQLCodeRegistry Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.Object>
ValuesResolver. getArgumentValues(GraphQLCodeRegistry codeRegistry, java.util.List<GraphQLArgument> argumentTypes, java.util.List<Argument> arguments, CoercedVariables coercedVariables, GraphQLContext graphqlContext, java.util.Locale locale)
-
Uses of GraphQLCodeRegistry in graphql.execution.directives
Methods in graphql.execution.directives with parameters of type GraphQLCodeRegistry Modifier and Type Method Description private void
DirectivesResolver. buildArguments(GraphQLDirective.Builder directiveBuilder, GraphQLCodeRegistry codeRegistry, GraphQLDirective protoType, Directive fieldDirective, java.util.Map<java.lang.String,java.lang.Object> variables, GraphQLContext graphQLContext, java.util.Locale locale)
-
Uses of GraphQLCodeRegistry in graphql.schema
Fields in graphql.schema declared as GraphQLCodeRegistry Modifier and Type Field Description private GraphQLCodeRegistry
GraphQLSchema.Builder. codeRegistry
private GraphQLCodeRegistry
GraphQLSchema.BuilderWithoutTypes. codeRegistry
private GraphQLCodeRegistry
GraphQLSchema. codeRegistry
Methods in graphql.schema that return GraphQLCodeRegistry Modifier and Type Method Description GraphQLCodeRegistry
GraphQLCodeRegistry.Builder. build()
GraphQLCodeRegistry
GraphQLSchema. getCodeRegistry()
GraphQLCodeRegistry
GraphQLCodeRegistry. transform(java.util.function.Consumer<GraphQLCodeRegistry.Builder> builderConsumer)
This helps you transform the currentGraphQLCodeRegistry
object into another one by starting a builder with all the current values and allows you to transform it how you want.Methods in graphql.schema with parameters of type GraphQLCodeRegistry Modifier and Type Method Description GraphQLSchema.Builder
GraphQLSchema.Builder. codeRegistry(GraphQLCodeRegistry codeRegistry)
GraphQLSchema.BuilderWithoutTypes
GraphQLSchema.BuilderWithoutTypes. codeRegistry(GraphQLCodeRegistry codeRegistry)
GraphQLCodeRegistry.Builder
GraphQLCodeRegistry.Builder. dataFetchers(GraphQLCodeRegistry codeRegistry)
static GraphQLCodeRegistry.Builder
GraphQLCodeRegistry. newCodeRegistry(GraphQLCodeRegistry existingCodeRegistry)
Returns a new builder ofGraphQLCodeRegistry
objects based on the existing oneGraphQLCodeRegistry.Builder
GraphQLCodeRegistry.Builder. typeResolvers(GraphQLCodeRegistry codeRegistry)
Constructors in graphql.schema with parameters of type GraphQLCodeRegistry Constructor Description Builder(GraphQLCodeRegistry codeRegistry)
GraphQLSchema(GraphQLSchema existingSchema, GraphQLCodeRegistry codeRegistry, com.google.common.collect.ImmutableMap<java.lang.String,GraphQLNamedType> typeMap, com.google.common.collect.ImmutableMap<java.lang.String,com.google.common.collect.ImmutableList<GraphQLObjectType>> interfaceNameToObjectTypes)
-
Uses of GraphQLCodeRegistry in graphql.schema.idl
Fields in graphql.schema.idl declared as GraphQLCodeRegistry Modifier and Type Field Description private GraphQLCodeRegistry
RuntimeWiring.Builder. codeRegistry
private GraphQLCodeRegistry
RuntimeWiring. codeRegistry
Methods in graphql.schema.idl that return GraphQLCodeRegistry Modifier and Type Method Description GraphQLCodeRegistry
RuntimeWiring. getCodeRegistry()
Methods in graphql.schema.idl with parameters of type GraphQLCodeRegistry Modifier and Type Method Description RuntimeWiring.Builder
RuntimeWiring.Builder. codeRegistry(GraphQLCodeRegistry codeRegistry)
This allows you to seed in your ownGraphQLCodeRegistry
instance
-