CustomFieldPredicate
Filter custom fields by value or existence.
1type CustomFieldPredicate = FieldPredicate<string> | 'exists' | '!exists';
A CustomFieldPredicate must either be:
- A string equal to
"exists"or"!exists" - A
FieldPredicate<T>where T is of typestring.