Uses of Interface
graphql.schema.GraphQLInputSchemaElement
-
Packages that use GraphQLInputSchemaElement Package Description graphql.analysis.values graphql.schema -
-
Uses of GraphQLInputSchemaElement in graphql.analysis.values
Fields in graphql.analysis.values with type parameters of type GraphQLInputSchemaElement Modifier and Type Field Description private com.google.common.collect.ImmutableList<GraphQLInputSchemaElement>
ValueTraverser.InputElements. inputElements
private java.util.List<GraphQLInputSchemaElement>
ValueTraverser.InputElements. unwrappedInputElements
Methods in graphql.analysis.values that return types with arguments of type GraphQLInputSchemaElement Modifier and Type Method Description java.util.List<GraphQLInputSchemaElement>
ValueTraverser.InputElements. getInputElements()
java.util.List<GraphQLInputSchemaElement>
ValueVisitor.InputElements. getInputElements()
java.util.List<GraphQLInputSchemaElement>
ValueTraverser.InputElements. getUnwrappedInputElements()
java.util.List<GraphQLInputSchemaElement>
ValueVisitor.InputElements. getUnwrappedInputElements()
This is the list of input schema elements that are unwrapped, e.g.Methods in graphql.analysis.values with parameters of type GraphQLInputSchemaElement Modifier and Type Method Description private ValueTraverser.InputElements
ValueTraverser.InputElements. push(GraphQLInputSchemaElement inputElement)
Constructors in graphql.analysis.values with parameters of type GraphQLInputSchemaElement Constructor Description InputElements(GraphQLInputSchemaElement startElement)
Constructor parameters in graphql.analysis.values with type arguments of type GraphQLInputSchemaElement Constructor Description InputElements(com.google.common.collect.ImmutableList<GraphQLInputSchemaElement> inputElements)
-
Uses of GraphQLInputSchemaElement in graphql.schema
Subinterfaces of GraphQLInputSchemaElement in graphql.schema Modifier and Type Interface Description interface
GraphQLInputType
Input types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputType
s which can only be used as graphql response output.interface
GraphQLInputValueDefinition
Named schema elements that contain input type information.interface
GraphQLNamedInputType
Input types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputType
s which can only be used as graphql response output.Classes in graphql.schema that implement GraphQLInputSchemaElement Modifier and Type Class Description class
GraphQLAppliedDirectiveArgument
This represents the argument values that can be placed on anGraphQLAppliedDirective
.class
GraphQLArgument
This defines an argument that can be supplied to a graphql field (viaGraphQLFieldDefinition
.class
GraphQLEnumType
A graphql enumeration type has a limited set of values.class
GraphQLInputObjectField
Input objects defined viaGraphQLInputObjectType
contains these input fields.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
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
GraphQLNonNull
A modified type that indicates there the underlying wrapped type will not be null.class
GraphQLScalarType
A scalar type is a leaf node in the graphql tree of types.class
GraphQLTypeReference
A special type to allow a object/interface types to reference itself.
-