Interface GraphQLExtensionPredicateEvaluationFailedError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLExtensionPredicateEvaluationFailedError extends GraphQLErrorObject

Returned when the predicate defined in the ExtensionTrigger could not be evaluated due to a missing field.


Example to create an instance using the builder pattern

     GraphQLExtensionPredicateEvaluationFailedError graphQLExtensionPredicateEvaluationFailedError = GraphQLExtensionPredicateEvaluationFailedError.builder()
             .errorByExtension(errorByExtensionBuilder -> errorByExtensionBuilder)
             .build()