What's wrong with this entry?
Anonymous. No account, no email.
What
A new structured filtering syntax for specifying conditions on event triggers and data queries, supporting a rich set of comparison operators.
Details
- Operators:
is,is_not(single values),one_of,none_of(list values),starts_with,contains,matches - Provides clear error messages for malformed predicates:
where: empty list for "field"— when a list operator receives an empty arraywhere: unknown op "op"— for unrecognized operatorswhere: "field" takes a single value; use one_of/none_of for a list— for type mismatcheswhere: must be a map of field→predicate, or a list of single-field maps— for structural errors- Scalars and objects cannot be mixed:
where: "field" mixes scalars and objects; use {one_of: [...]} or an op object
Evidence
Predicate operator definitions (search for "one_of" and "none_of")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.