Package graphql.schema
Interface GraphQLInputFieldsContainer
-
- All Superinterfaces:
GraphQLNamedSchemaElement
,GraphQLNamedType
,GraphQLSchemaElement
,GraphQLType
- All Known Implementing Classes:
GraphQLInputObjectType
@PublicApi public interface GraphQLInputFieldsContainer extends GraphQLNamedType
Types that can contain input fields are marked with this interface- See Also:
GraphQLInputType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphQLInputObjectField
getFieldDefinition(java.lang.String name)
java.util.List<GraphQLInputObjectField>
getFieldDefinitions()
-
Methods inherited from interface graphql.schema.GraphQLNamedSchemaElement
getDefinition, getDescription, getName
-
Methods inherited from interface graphql.schema.GraphQLSchemaElement
accept, copy, equals, getChildren, getChildrenWithTypeReferences, hashCode, withNewChildren
-
-
-
-
Method Detail
-
getFieldDefinition
GraphQLInputObjectField getFieldDefinition(java.lang.String name)
-
getFieldDefinitions
java.util.List<GraphQLInputObjectField> getFieldDefinitions()
-
-