Interface GraphQLField
- All Known Implementing Classes:
 GraphQLFieldImpl
public interface GraphQLField
Used to represent information about a field in a GraphQL object type
- 
Method Summary
 
- 
Method Details
- 
getName
String getName()- Returns:
 - the name of the field
 
 - 
getValueType
String getValueType()- Returns:
 - the GraphQL value type of the field (String,Int,... etc.) Note: does not include List or Non-nullable identifiers in the type information.
 
 - 
getFieldType
GraphQLFieldType getFieldType()- Returns:
 - a GraphQLFieldType enum describing if the field fetches scalar value(s) or object(s).
 
 
 -