Uses of Class
graphql.schema.idl.SchemaGenerator.Options
-
Packages that use SchemaGenerator.Options Package Description graphql.schema.idl -
-
Uses of SchemaGenerator.Options in graphql.schema.idl
Fields in graphql.schema.idl declared as SchemaGenerator.Options Modifier and Type Field Description SchemaGenerator.Options
SchemaGeneratorHelper.BuildContext. options
Methods in graphql.schema.idl that return SchemaGenerator.Options Modifier and Type Method Description SchemaGenerator.Options
SchemaGenerator.Options. captureAstDefinitions(boolean captureAstDefinitions)
Memory can be saved if the original AST definitions are not associated with the built runtime types.static SchemaGenerator.Options
SchemaGenerator.Options. defaultOptions()
SchemaGenerator.Options
SchemaGenerator.Options. useAppliedDirectivesOnly(boolean useAppliedDirectivesOnly)
The classGraphQLDirective
should really represent the definition of a directive, and not its use on schema elements.SchemaGenerator.Options
SchemaGenerator.Options. useCommentsAsDescriptions(boolean useCommentsAsDescription)
This controls whether # comments can be used as descriptions in the built schema.Methods in graphql.schema.idl with parameters of type SchemaGenerator.Options Modifier and Type Method Description GraphQLSchema
SchemaGenerator. makeExecutableSchema(SchemaGenerator.Options options, TypeDefinitionRegistry typeRegistry, RuntimeWiring wiring)
This will take aTypeDefinitionRegistry
and aRuntimeWiring
and put them together to create a executable schema controlled by the provided options.private GraphQLSchema
SchemaGenerator. makeExecutableSchemaImpl(TypeDefinitionRegistry typeRegistry, RuntimeWiring wiring, java.util.Map<java.lang.String,OperationTypeDefinition> operationTypeDefinitions, SchemaGenerator.Options options)
Constructors in graphql.schema.idl with parameters of type SchemaGenerator.Options Constructor Description BuildContext(TypeDefinitionRegistry typeRegistry, RuntimeWiring wiring, java.util.Map<java.lang.String,OperationTypeDefinition> operationTypeDefinitions, SchemaGenerator.Options options)
-