Uses of Class
graphql.language.FieldDefinition
-
Packages that use FieldDefinition Package Description graphql.introspection graphql.language graphql.parser graphql.schema graphql.schema.diff graphql.schema.idl graphql.schema.idl.errors -
-
Uses of FieldDefinition in graphql.introspection
Methods in graphql.introspection that return types with arguments of type FieldDefinition Modifier and Type Method Description private java.util.List<FieldDefinition>
IntrospectionResultToSchema. createFields(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> fields)
-
Uses of FieldDefinition in graphql.language
Fields in graphql.language with type parameters of type FieldDefinition Modifier and Type Field Description private com.google.common.collect.ImmutableList<FieldDefinition>
InterfaceTypeDefinition.Builder. definitions
private com.google.common.collect.ImmutableList<FieldDefinition>
InterfaceTypeDefinition. definitions
private com.google.common.collect.ImmutableList<FieldDefinition>
InterfaceTypeExtensionDefinition.Builder. definitions
private com.google.common.collect.ImmutableList<FieldDefinition>
ObjectTypeDefinition.Builder. fieldDefinitions
private com.google.common.collect.ImmutableList<FieldDefinition>
ObjectTypeDefinition. fieldDefinitions
private com.google.common.collect.ImmutableList<FieldDefinition>
ObjectTypeExtensionDefinition.Builder. fieldDefinitions
Methods in graphql.language that return FieldDefinition Modifier and Type Method Description FieldDefinition
FieldDefinition.Builder. build()
FieldDefinition
FieldDefinition. deepCopy()
FieldDefinition
FieldDefinition. transform(java.util.function.Consumer<FieldDefinition.Builder> builderConsumer)
FieldDefinition
FieldDefinition. withNewChildren(NodeChildrenContainer newChildren)
Methods in graphql.language that return types with arguments of type FieldDefinition Modifier and Type Method Description private AstPrinter.NodePrinter<FieldDefinition>
AstPrinter. fieldDefinition()
private AstPrinter.NodePrinter<FieldDefinition>
PrettyAstPrinter. fieldDefinition()
java.util.List<FieldDefinition>
ImplementingTypeDefinition. getFieldDefinitions()
java.util.List<FieldDefinition>
InterfaceTypeDefinition. getFieldDefinitions()
java.util.List<FieldDefinition>
ObjectTypeDefinition. getFieldDefinitions()
Methods in graphql.language with parameters of type FieldDefinition Modifier and Type Method Description InterfaceTypeDefinition.Builder
InterfaceTypeDefinition.Builder. definition(FieldDefinition definition)
InterfaceTypeExtensionDefinition.Builder
InterfaceTypeExtensionDefinition.Builder. definition(FieldDefinition definition)
ObjectTypeDefinition.Builder
ObjectTypeDefinition.Builder. fieldDefinition(FieldDefinition fieldDefinition)
ObjectTypeExtensionDefinition.Builder
ObjectTypeExtensionDefinition.Builder. fieldDefinition(FieldDefinition fieldDefinition)
TraversalControl
NodeVisitor. visitFieldDefinition(FieldDefinition node, TraverserContext<Node> data)
TraversalControl
NodeVisitorStub. visitFieldDefinition(FieldDefinition node, TraverserContext<Node> context)
Method parameters in graphql.language with type arguments of type FieldDefinition Modifier and Type Method Description InterfaceTypeDefinition.Builder
InterfaceTypeDefinition.Builder. definitions(java.util.List<FieldDefinition> definitions)
InterfaceTypeExtensionDefinition.Builder
InterfaceTypeExtensionDefinition.Builder. definitions(java.util.List<FieldDefinition> definitions)
ObjectTypeDefinition.Builder
ObjectTypeDefinition.Builder. fieldDefinitions(java.util.List<FieldDefinition> fieldDefinitions)
ObjectTypeExtensionDefinition.Builder
ObjectTypeExtensionDefinition.Builder. fieldDefinitions(java.util.List<FieldDefinition> fieldDefinitions)
Constructors in graphql.language with parameters of type FieldDefinition Constructor Description Builder(FieldDefinition existing)
-
Uses of FieldDefinition in graphql.parser
Methods in graphql.parser that return FieldDefinition Modifier and Type Method Description protected FieldDefinition
GraphqlAntlrToLanguage. createFieldDefinition(GraphqlParser.FieldDefinitionContext ctx)
Methods in graphql.parser that return types with arguments of type FieldDefinition Modifier and Type Method Description protected java.util.List<FieldDefinition>
GraphqlAntlrToLanguage. createFieldDefinitions(GraphqlParser.ExtensionFieldsDefinitionContext ctx)
protected java.util.List<FieldDefinition>
GraphqlAntlrToLanguage. createFieldDefinitions(GraphqlParser.FieldsDefinitionContext ctx)
-
Uses of FieldDefinition in graphql.schema
Fields in graphql.schema declared as FieldDefinition Modifier and Type Field Description private FieldDefinition
GraphQLFieldDefinition.Builder. definition
private FieldDefinition
GraphQLFieldDefinition. definition
Methods in graphql.schema that return FieldDefinition Modifier and Type Method Description FieldDefinition
GraphQLFieldDefinition. getDefinition()
Methods in graphql.schema with parameters of type FieldDefinition Modifier and Type Method Description GraphQLFieldDefinition.Builder
GraphQLFieldDefinition.Builder. definition(FieldDefinition definition)
Constructors in graphql.schema with parameters of type FieldDefinition Constructor Description GraphQLFieldDefinition(java.lang.String name, java.lang.String description, GraphQLOutputType type, DataFetcherFactory dataFetcherFactory, java.util.List<GraphQLArgument> arguments, java.lang.String deprecationReason, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives, FieldDefinition definition)
-
Uses of FieldDefinition in graphql.schema.diff
Methods in graphql.schema.diff with parameters of type FieldDefinition Modifier and Type Method Description private void
SchemaDiff. checkField(DiffCtx ctx, TypeDefinition old, FieldDefinition oldField, FieldDefinition newField)
private void
SchemaDiff. checkFieldArg(DiffCtx ctx, TypeDefinition oldDef, FieldDefinition oldField, InputValueDefinition oldArg, InputValueDefinition newArg)
private void
SchemaDiff. checkFieldArguments(DiffCtx ctx, TypeDefinition oldDef, FieldDefinition oldField, java.util.List<InputValueDefinition> oldInputValueDefinitions, java.util.List<InputValueDefinition> newInputValueDefinitions)
Method parameters in graphql.schema.diff with type arguments of type FieldDefinition Modifier and Type Method Description private void
SchemaDiff. checkFieldAdditions(DiffCtx ctx, TypeDefinition newDef, java.util.Map<java.lang.String,FieldDefinition> oldFields, java.util.Map<java.lang.String,FieldDefinition> newFields)
private void
SchemaDiff. checkFieldRemovals(DiffCtx ctx, TypeDefinition oldDef, java.util.Map<java.lang.String,FieldDefinition> oldFields, java.util.Map<java.lang.String,FieldDefinition> newFields)
private void
SchemaDiff. checkFields(DiffCtx ctx, TypeDefinition oldDef, java.util.Map<java.lang.String,FieldDefinition> oldFields, TypeDefinition newDef, java.util.Map<java.lang.String,FieldDefinition> newFields)
-
Uses of FieldDefinition in graphql.schema.idl
Fields in graphql.schema.idl declared as FieldDefinition Modifier and Type Field Description private FieldDefinition
FieldWiringEnvironment. fieldDefinition
Methods in graphql.schema.idl that return FieldDefinition Modifier and Type Method Description FieldDefinition
FieldWiringEnvironment. getFieldDefinition()
Methods in graphql.schema.idl that return types with arguments of type FieldDefinition Modifier and Type Method Description private java.util.Set<FieldDefinition>
ImplementingTypesChecker. getLogicallyDeclaredFields(ImplementingTypeDefinition type, TypeDefinitionRegistry typeRegistry)
Methods in graphql.schema.idl with parameters of type FieldDefinition Modifier and Type Method Description private DataFetcherFactory<?>
SchemaGeneratorHelper. buildDataFetcherFactory(SchemaGeneratorHelper.BuildContext buildCtx, TypeDefinition<?> parentType, FieldDefinition fieldDef, GraphQLOutputType fieldType, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives)
(package private) GraphQLFieldDefinition
SchemaGeneratorHelper. buildField(SchemaGeneratorHelper.BuildContext buildCtx, TypeDefinition<?> parentType, FieldDefinition fieldDef)
private void
ImplementingTypesChecker. checkArgumentConsistency(java.lang.String typeOfType, ImplementingTypeDefinition objectTypeDef, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition objectFieldDef, FieldDefinition interfaceFieldDef, java.util.List<GraphQLError> errors)
Constructors in graphql.schema.idl with parameters of type FieldDefinition Constructor Description FieldWiringEnvironment(TypeDefinitionRegistry registry, TypeDefinition parentType, FieldDefinition fieldDefinition, GraphQLOutputType fieldType, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives)
-
Uses of FieldDefinition in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type FieldDefinition Constructor Description InterfaceFieldArgumentNotOptionalError(java.lang.String typeOfType, ImplementingTypeDefinition typeDefinition, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition objectFieldDef, java.lang.String objectArgStr)
InterfaceFieldArgumentRedefinitionError(java.lang.String typeOfType, ImplementingTypeDefinition typeDefinition, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition objectFieldDef, java.lang.String objectArgStr, java.lang.String interfaceArgStr)
InterfaceFieldRedefinitionError(java.lang.String typeOfType, ImplementingTypeDefinition typeDefinition, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition objectFieldDef, java.lang.String objectFieldType, java.lang.String interfaceFieldType)
MissingInterfaceFieldArgumentsError(java.lang.String typeOfType, ImplementingTypeDefinition typeDefinition, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition objectFieldDef)
MissingInterfaceFieldError(java.lang.String typeOfType, ImplementingTypeDefinition objectType, InterfaceTypeDefinition interfaceTypeDef, FieldDefinition interfaceFieldDef)
NonUniqueArgumentError(TypeDefinition typeDefinition, FieldDefinition fieldDefinition, java.lang.String argumentName)
NonUniqueDirectiveError(TypeDefinition typeDefinition, FieldDefinition fieldDefinition, java.lang.String directiveName)
NonUniqueNameError(TypeDefinition typeDefinition, FieldDefinition fieldDefinition)
TypeExtensionFieldRedefinitionError(TypeDefinition typeDefinition, FieldDefinition fieldDefinition)
-