Package graphql.schema
Interface GraphQLFieldsContainer
-
- All Superinterfaces:
GraphQLCompositeType
,GraphQLNamedOutputType
,GraphQLNamedSchemaElement
,GraphQLNamedType
,GraphQLOutputType
,GraphQLSchemaElement
,GraphQLType
- All Known Subinterfaces:
GraphQLImplementingType
- All Known Implementing Classes:
GraphQLInterfaceType
,GraphQLObjectType
@PublicApi public interface GraphQLFieldsContainer extends GraphQLCompositeType
Types that can contain output fields are marked with this interface- See Also:
GraphQLObjectType
,GraphQLInterfaceType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GraphQLFieldDefinition
getField(java.lang.String name)
GraphQLFieldDefinition
getFieldDefinition(java.lang.String name)
java.util.List<GraphQLFieldDefinition>
getFieldDefinitions()
default java.util.List<GraphQLFieldDefinition>
getFields()
-
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
GraphQLFieldDefinition getFieldDefinition(java.lang.String name)
-
getFieldDefinitions
java.util.List<GraphQLFieldDefinition> getFieldDefinitions()
-
getField
default GraphQLFieldDefinition getField(java.lang.String name)
-
getFields
default java.util.List<GraphQLFieldDefinition> getFields()
-
-