ElasticGraph Query API: Equality Filtering
The most commonly used predicate supports equality filtering:
equalToAnyOf
- Matches records where the field value is equal to any of the provided values.
This works just like an
IN
operator in SQL.When
null
is passed, matches all documents. When an empty list is passed, this part of the filter matches no documents. Whennull
is passed in the list, this part of the filter matches records where the field value isnull
.
Here’s a basic example:
Unlike the SQL IN
operator, you can find records with null
values if you put null
in the list: