Uses of Class
graphql.language.ObjectField
-
Packages that use ObjectField Package Description graphql.analysis graphql.execution graphql.language graphql.schema.idl graphql.validation -
-
Uses of ObjectField in graphql.analysis
Methods in graphql.analysis with parameters of type ObjectField Modifier and Type Method Description TraversalControl
NodeVisitorWithTypeTracking. visitObjectField(ObjectField node, TraverserContext<Node> context)
-
Uses of ObjectField in graphql.execution
Methods in graphql.execution that return types with arguments of type ObjectField Modifier and Type Method Description private static java.util.Map<java.lang.String,ObjectField>
ValuesResolverConversion. mapObjectValueFieldsByName(ObjectValue inputValue)
-
Uses of ObjectField in graphql.language
Fields in graphql.language with type parameters of type ObjectField Modifier and Type Field Description private com.google.common.collect.ImmutableList<ObjectField>
ObjectValue.Builder. objectFields
private com.google.common.collect.ImmutableList<ObjectField>
ObjectValue. objectFields
Methods in graphql.language that return ObjectField Modifier and Type Method Description ObjectField
ObjectField.Builder. build()
ObjectField
ObjectField. deepCopy()
ObjectField
ObjectField. transform(java.util.function.Consumer<ObjectField.Builder> builderConsumer)
ObjectField
ObjectField. withNewChildren(NodeChildrenContainer newChildren)
Methods in graphql.language that return types with arguments of type ObjectField Modifier and Type Method Description java.util.List<ObjectField>
ObjectValue. getObjectFields()
private AstPrinter.NodePrinter<ObjectField>
AstPrinter. objectField()
Methods in graphql.language with parameters of type ObjectField Modifier and Type Method Description ObjectValue.Builder
ObjectValue.Builder. objectField(ObjectField objectField)
TraversalControl
NodeVisitor. visitObjectField(ObjectField node, TraverserContext<Node> data)
TraversalControl
NodeVisitorStub. visitObjectField(ObjectField node, TraverserContext<Node> context)
Method parameters in graphql.language with type arguments of type ObjectField Modifier and Type Method Description ObjectValue.Builder
ObjectValue.Builder. objectFields(java.util.List<ObjectField> objectFields)
Constructors in graphql.language with parameters of type ObjectField Constructor Description Builder(ObjectField existing)
Constructor parameters in graphql.language with type arguments of type ObjectField Constructor Description ObjectValue(java.util.List<ObjectField> objectFields)
alternative to using a Builder for convenienceObjectValue(java.util.List<ObjectField> objectFields, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
-
Uses of ObjectField in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type ObjectField Modifier and Type Method Description private void
ArgValueOfAllowedTypeChecker. checkArgInputObjectValueFieldMatchesAllowedDefinition(java.util.List<GraphQLError> errors, ObjectField objectField, InputValueDefinition allowedValueDef)
-
Uses of ObjectField in graphql.validation
Methods in graphql.validation that return types with arguments of type ObjectField Modifier and Type Method Description private java.util.Map<java.lang.String,ObjectField>
ValidationUtil. fieldMap(ObjectValue objectValue)
Methods in graphql.validation with parameters of type ObjectField Modifier and Type Method Description private void
TraversalContext. enterImpl(ObjectField objectField)
protected void
ArgumentValidationUtil. handleExtraFieldError(Value<?> value, GraphQLInputObjectType type, ObjectField objectField)
protected void
ValidationUtil. handleExtraFieldError(Value<?> value, GraphQLInputObjectType type, ObjectField objectField)
protected void
ArgumentValidationUtil. handleFieldNotValidError(ObjectField objectField, GraphQLInputObjectType type)
protected void
ValidationUtil. handleFieldNotValidError(ObjectField objectField, GraphQLInputObjectType type)
Method parameters in graphql.validation with type arguments of type ObjectField Modifier and Type Method Description private java.util.Set<java.lang.String>
ValidationUtil. getMissingFields(GraphQLInputObjectType type, java.util.Map<java.lang.String,ObjectField> objectFieldMap, GraphqlFieldVisibility fieldVisibility)
-