Interface GraphQLRequiredFieldError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLRequiredFieldErrorImpl

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()