Package | Description |
---|---|
graphql.schema |
Modifier and Type | Class and Description |
---|---|
class |
GraphQLEnumType
A graphql enumeration type has a limited set of values.
|
class |
GraphQLInputObjectType
graphql clearly delineates between the types of objects that represent the output of a query and input objects that
can be fed into a graphql mutation.
|
class |
GraphQLInterfaceType
In graphql, an interface is an abstract type that defines the set of fields that a type must include to
implement that interface.
|
class |
GraphQLList
A modified type that indicates there is a list of the underlying wrapped type, eg a list of strings or a list of booleans.
|
class |
GraphQLObjectType
This is the work horse type and represents an object with one or more field values that can be retrieved
by the graphql system.
|
class |
GraphQLScalarType
A scalar type is a leaf node in the graphql tree of types.
|
class |
GraphQLUnionType
A union type is a polymorphic type that dynamically represents one of more concrete object types.
|
Modifier and Type | Method and Description |
---|---|
default TraversalControl |
GraphQLTypeVisitor.visitGraphQLNullableType(GraphQLNullableType node,
TraverserContext<GraphQLType> context) |
Copyright © 2019. All rights reserved.