Interface GraphQLDuplicateFieldError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLDuplicateFieldErrorImpl

Returned when a field value conflicts with an existing value causing a duplicate.


Example to create an instance using the builder pattern

     GraphQLDuplicateFieldError graphQLDuplicateFieldError = GraphQLDuplicateFieldError.builder()
             .field("{field}")
             .build()