Interface ExtensionPredicateEvaluationFailedError

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

interface ExtensionPredicateEvaluationFailedError {
    code: "ExtensionPredicateEvaluationFailed";
    errorByExtension: ErrorByExtension;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "ExtensionPredicateEvaluationFailed"
errorByExtension: ErrorByExtension

Details about the API Extension that was involved in the error.

message: string

"The compared field $fieldName is not present."

Generated using TypeDoc