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 interfaceDefinition<T extends Definition>Subinterfaces of Definition in graphql.language Modifier and Type Interface Description interfaceImplementingTypeDefinition<T extends TypeDefinition>ATypeDefinitionthat might implement interfacesinterfaceSDLDefinition<T extends SDLDefinition>An interface for Schema Definition Language (SDL) definitions.interfaceSDLNamedDefinition<T extends SDLNamedDefinition>A interface for named Schema Definition Language (SDL) definition.interfaceTypeDefinition<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 classDirectiveDefinitionclassEnumTypeDefinitionclassEnumTypeExtensionDefinitionclassFragmentDefinitionProvided to the DataFetcher, therefore public APIclassInputObjectTypeDefinitionclassInputObjectTypeExtensionDefinitionclassInterfaceTypeDefinitionclassInterfaceTypeExtensionDefinitionclassObjectTypeDefinitionclassObjectTypeExtensionDefinitionclassOperationDefinitionclassScalarTypeDefinitionclassScalarTypeExtensionDefinitionclassSchemaDefinitionclassSchemaExtensionDefinitionclassUnionTypeDefinitionclassUnionTypeExtensionDefinitionFields in graphql.language with type parameters of type Definition Modifier and Type Field Description private com.google.common.collect.ImmutableList<Definition>Document.Builder. definitionsprivate com.google.common.collect.ImmutableList<Definition>Document. definitionsMethods 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.BuilderDocument.Builder. definition(Definition definition)protected TraversalControlNodeVisitorStub. visitDefinition(Definition<?> node, TraverserContext<Node> context)Method parameters in graphql.language with type arguments of type Definition Modifier and Type Method Description Document.BuilderDocument.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 DefinitionGraphqlAntlrToLanguage. 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.StringExecutableDefinitions. nonExecutableDefinitionMessage(Definition definition)
-