Uses of Interface
graphql.schema.GraphQLNamedSchemaElement
Packages that use GraphQLNamedSchemaElement
Package
Description
-
Uses of GraphQLNamedSchemaElement in graphql.schema
Subinterfaces of GraphQLNamedSchemaElement in graphql.schemaModifier and TypeInterfaceDescriptioninterface
interface
Represents a graphql runtime type that can haveGraphQLAppliedDirective
s.interface
Types that can contain output fields are marked with this interfaceinterface
A GraphQLType which can implement interfacesinterface
Types that can contain input fields are marked with this interfaceinterface
Named schema elements that contain input type information.interface
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
Output types represent those set of types that are allowed to be sent back as a graphql response, as opposed toGraphQLInputType
s which can only be used as graphql mutation input.interface
A GraphQLType which is also a named element, which means it has a getName() method.interface
Classes in graphql.schema that implement GraphQLNamedSchemaElementModifier and TypeClassDescriptionclass
An applied directive represents the instance of a directive that is applied to a schema element, as opposed to it definitionclass
This represents the argument values that can be placed on anGraphQLAppliedDirective
.class
This defines an argument that can be supplied to a graphql field (viaGraphQLFieldDefinition
.class
A directive can be used to modify the behavior of a graphql field or type.class
A graphql enumeration type has a limited set of values.class
A graphql enumeration type has a limited set of values and this defines one of those unique valuesclass
Fields are the ways you get data values in graphql and a field definition represents a field, its type, the arguments it takes and theDataFetcher
used to get data values for that field.class
Input objects defined viaGraphQLInputObjectType
contains these input fields.class
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
In graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.class
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
A scalar type is a leaf node in the graphql tree of types.class
A special type to allow a object/interface types to reference itself.class
A union type is a polymorphic type that dynamically represents one of more concrete object types.Methods in graphql.schema that return types with arguments of type GraphQLNamedSchemaElementModifier and TypeMethodDescriptionGraphQLSchema.getAllElementsAsList()
This returns all the top levelGraphQLNamedSchemaElement
named types and directives in the schemastatic Predicate
<GraphQLNamedSchemaElement> GraphQLTypeUtil.isSystemElement()
This predicate returns true if the schema element is an inbuilt schema element such as the system scalars and directives or introspection types -
Uses of GraphQLNamedSchemaElement in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type GraphQLNamedSchemaElement -
Uses of GraphQLNamedSchemaElement in graphql.schema.transform
Fields in graphql.schema.transform declared as GraphQLNamedSchemaElementModifier and TypeFieldDescriptionprivate final GraphQLNamedSchemaElement
VisibleFieldPredicateEnvironment.VisibleFieldPredicateEnvironmentImpl.schemaElement
Methods in graphql.schema.transform that return GraphQLNamedSchemaElementModifier and TypeMethodDescriptionVisibleFieldPredicateEnvironment.getSchemaElement()
VisibleFieldPredicateEnvironment.VisibleFieldPredicateEnvironmentImpl.getSchemaElement()
Methods in graphql.schema.transform with parameters of type GraphQLNamedSchemaElementModifier and TypeMethodDescriptionprivate TraversalControl
FieldVisibilitySchemaTransformation.FieldRemovalVisitor.visitField
(GraphQLNamedSchemaElement element, TraverserContext<GraphQLSchemaElement> context) Constructors in graphql.schema.transform with parameters of type GraphQLNamedSchemaElementModifierConstructorDescriptionVisibleFieldPredicateEnvironmentImpl
(GraphQLNamedSchemaElement schemaElement, GraphQLSchemaElement parentElement) -
Uses of GraphQLNamedSchemaElement in graphql.schema.usage
Methods in graphql.schema.usage that return types with arguments of type GraphQLNamedSchemaElementModifier and TypeMethodDescriptionSchemaUsage.getUnReferencedElements
(GraphQLSchema schema) This returns all the unreferenced named elements in a schema. -
Uses of GraphQLNamedSchemaElement in graphql.schema.visitor
Methods in graphql.schema.visitor that return GraphQLNamedSchemaElementModifier and TypeMethodDescriptionGraphQLSchemaVisitor.ArgumentVisitorEnvironment.getContainer()
GraphQLSchemaVisitorAdapter.ArgumentEnv.getContainer()
-
Uses of GraphQLNamedSchemaElement in graphql.util
Methods in graphql.util that return types with arguments of type GraphQLNamedSchemaElementModifier and TypeMethodDescriptionstatic Map
<GraphQLNamedSchemaElement, String> Anonymizer.recordNewNamesForSchema
(GraphQLSchema schema) Method parameters in graphql.util with type arguments of type GraphQLNamedSchemaElementModifier and TypeMethodDescriptionprivate static Value
Anonymizer.replaceValue
(Value valueLiteral, GraphQLInputType argType, Map<GraphQLNamedSchemaElement, String> newNameMap, AtomicInteger defaultStringValueCounter, AtomicInteger defaultIntValueCounter) private static String
Anonymizer.rewriteQuery
(String query, GraphQLSchema schema, Map<GraphQLNamedSchemaElement, String> newNames, Map<String, Object> variables)