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. inputElementsprivate java.util.List<GraphQLInputSchemaElement>ValueTraverser.InputElements. unwrappedInputElementsMethods 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.InputElementsValueTraverser.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 interfaceGraphQLInputTypeInput types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputTypes which can only be used as graphql response output.interfaceGraphQLInputValueDefinitionNamed schema elements that contain input type information.interfaceGraphQLNamedInputTypeInput types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputTypes which can only be used as graphql response output.Classes in graphql.schema that implement GraphQLInputSchemaElement Modifier and Type Class Description classGraphQLAppliedDirectiveArgumentThis represents the argument values that can be placed on anGraphQLAppliedDirective.classGraphQLArgumentThis defines an argument that can be supplied to a graphql field (viaGraphQLFieldDefinition.classGraphQLEnumTypeA graphql enumeration type has a limited set of values.classGraphQLInputObjectFieldInput objects defined viaGraphQLInputObjectTypecontains these input fields.classGraphQLInputObjectTypegraphql 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.classGraphQLListA modified type that indicates there is a list of the underlying wrapped type, eg a list of strings or a list of booleans.classGraphQLNonNullA modified type that indicates there the underlying wrapped type will not be null.classGraphQLScalarTypeA scalar type is a leaf node in the graphql tree of types.classGraphQLTypeReferenceA special type to allow a object/interface types to reference itself.
-