Interface GraphQLRequiredFieldError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLRequiredFieldError extends GraphQLErrorObject

Returned when a value is not defined for a required field.


Example to create an instance using the builder pattern

     GraphQLRequiredFieldError graphQLRequiredFieldError = GraphQLRequiredFieldError.builder()
             .field("{field}")
             .build()
 
  • Field Details

    • REQUIRED_FIELD

      static final String REQUIRED_FIELD
      discriminator value for GraphQLRequiredFieldError
      See Also:
  • Method Details