Uses of Interface
graphql.language.Definition
-
Packages that use Definition Package Description graphql.language graphql.parser graphql.schema.idl.errors graphql.validation.rules -
-
Uses of Definition in graphql.language
Classes in graphql.language with type parameters of type Definition Modifier and Type Interface Description interface
Definition<T extends Definition>
Subinterfaces of Definition in graphql.language Modifier and Type Interface Description interface
ImplementingTypeDefinition<T extends TypeDefinition>
ATypeDefinition
that might implement interfacesinterface
SDLDefinition<T extends SDLDefinition>
An interface for Schema Definition Language (SDL) definitions.interface
SDLNamedDefinition<T extends SDLNamedDefinition>
A interface for named Schema Definition Language (SDL) definition.interface
TypeDefinition<T extends TypeDefinition>
An interface for type definitions in a Schema Definition Language (SDL).Classes in graphql.language that implement Definition Modifier and Type Class Description class
DirectiveDefinition
class
EnumTypeDefinition
class
EnumTypeExtensionDefinition
class
FragmentDefinition
Provided to the DataFetcher, therefore public APIclass
InputObjectTypeDefinition
class
InputObjectTypeExtensionDefinition
class
InterfaceTypeDefinition
class
InterfaceTypeExtensionDefinition
class
ObjectTypeDefinition
class
ObjectTypeExtensionDefinition
class
OperationDefinition
class
ScalarTypeDefinition
class
ScalarTypeExtensionDefinition
class
SchemaDefinition
class
SchemaExtensionDefinition
class
UnionTypeDefinition
class
UnionTypeExtensionDefinition
Fields in graphql.language with type parameters of type Definition Modifier and Type Field Description private com.google.common.collect.ImmutableList<Definition>
Document.Builder. definitions
private com.google.common.collect.ImmutableList<Definition>
Document. definitions
Methods in graphql.language with type parameters of type Definition Modifier and Type Method Description <T extends Definition>
java.util.List<T>Document. getDefinitionsOfType(java.lang.Class<T> definitionClass)
Returns a list of definitions of the specific type.<T extends Definition>
java.util.Optional<T>Document. getFirstDefinitionOfType(java.lang.Class<T> definitionClass)
Returns the first of the specific type.Methods in graphql.language that return types with arguments of type Definition Modifier and Type Method Description private java.util.Comparator<Definition>
AstSorter. comparingDefinitions()
java.util.List<Definition>
Document. getDefinitions()
Methods in graphql.language with parameters of type Definition Modifier and Type Method Description Document.Builder
Document.Builder. definition(Definition definition)
protected TraversalControl
NodeVisitorStub. visitDefinition(Definition<?> node, TraverserContext<Node> context)
Method parameters in graphql.language with type arguments of type Definition Modifier and Type Method Description Document.Builder
Document.Builder. definitions(java.util.List<Definition> definitions)
Constructor parameters in graphql.language with type arguments of type Definition Constructor Description Document(java.util.List<Definition> definitions)
alternative to using a Builder for convenienceDocument(java.util.List<Definition> definitions, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
-
Uses of Definition in graphql.parser
Methods in graphql.parser that return Definition Modifier and Type Method Description protected Definition
GraphqlAntlrToLanguage. createDefinition(GraphqlParser.DefinitionContext definitionContext)
-
Uses of Definition in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type Definition Constructor Description NonSDLDefinitionError(Definition definition)
-
Uses of Definition in graphql.validation.rules
Methods in graphql.validation.rules with parameters of type Definition Modifier and Type Method Description private java.lang.String
ExecutableDefinitions. nonExecutableDefinitionMessage(Definition definition)
-