Class NonNullableFieldWasNullError

java.lang.Object
graphql.execution.NonNullableFieldWasNullError
All Implemented Interfaces:
GraphQLError, Serializable

public class NonNullableFieldWasNullError extends Object implements GraphQLError
This is the base error that indicates that a non null field value was in fact null.
See Also:
  • Constructor Details

  • Method Details

    • getMessage

      public String getMessage()
      Specified by:
      getMessage in interface GraphQLError
      Returns:
      a description of the error intended for the developer as a guide to understand and correct the error
    • getPath

      public List<Object> getPath()
      Description copied from interface: GraphQLError
      The graphql spec says that the (optional) path field of any error must be a list of path entries starting at the root of the response and ending with the field associated with the error https://spec.graphql.org/draft/#sec-Errors.Error-Result-Format
      Specified by:
      getPath in interface GraphQLError
      Returns:
      the path in list format
    • getLocations

      public List<SourceLocation> getLocations()
      Specified by:
      getLocations in interface GraphQLError
      Returns:
      the location(s) within the GraphQL document at which the error occurred. Each SourceLocation describes the beginning of an associated syntax element
    • getErrorType

      public ErrorType getErrorType()
      Specified by:
      getErrorType in interface GraphQLError
      Returns:
      an object classifying this error
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object