Interface GraphQLInvalidFieldError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLInvalidFieldErrorImpl

Returned when a field has an invalid value.


Example to create an instance using the builder pattern

     GraphQLInvalidFieldError graphQLInvalidFieldError = GraphQLInvalidFieldError.builder()
             .field("{field}")
             .build()