Uses of Class
graphql.schema.idl.errors.SchemaProblem
-
Packages that use SchemaProblem Package Description graphql.schema.idl -
-
Uses of SchemaProblem in graphql.schema.idl
Methods in graphql.schema.idl that return SchemaProblem Modifier and Type Method Description private SchemaProblem
SchemaParser. handleParseException(InvalidSyntaxError invalidSyntaxError)
Methods in graphql.schema.idl that throw SchemaProblem Modifier and Type Method Description java.util.List<GraphQLError>
SchemaTypeChecker. checkTypeRegistry(TypeDefinitionRegistry typeRegistry, RuntimeWiring wiring)
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.GraphQLSchema
SchemaGenerator. makeExecutableSchema(TypeDefinitionRegistry typeRegistry, RuntimeWiring wiring)
This will take aTypeDefinitionRegistry
and aRuntimeWiring
and put them together to create a executable schemaTypeDefinitionRegistry
TypeDefinitionRegistry. merge(TypeDefinitionRegistry typeRegistry)
This will merge these type registries together and return this oneTypeDefinitionRegistry
SchemaParser. parse(java.io.File file)
Parse a file of schema definitions and create aTypeDefinitionRegistry
TypeDefinitionRegistry
SchemaParser. parse(java.io.InputStream inputStream)
Parse a inputStream of schema definitions and create aTypeDefinitionRegistry
TypeDefinitionRegistry
SchemaParser. parse(java.io.Reader reader)
Parse a reader of schema definitions and create aTypeDefinitionRegistry
TypeDefinitionRegistry
SchemaParser. parse(java.io.Reader reader, ParserOptions parserOptions)
Parse a reader of schema definitions and create aTypeDefinitionRegistry
TypeDefinitionRegistry
SchemaParser. parse(java.lang.String schemaInput)
Parse a string of schema definitions and create aTypeDefinitionRegistry
-