Skip to main content

Module filter

Module filter 

Source

Functions§

and
$and — all conditions must match.
array_contains
$arrayContains — the metadata array field contains value.
array_contains_all
$arrayContainsAll — the metadata array field contains ALL of values.
array_contains_any
$arrayContainsAny — the metadata array field contains ANY of values.
contains
$contains — case-sensitive substring match.
ends_with
$endsWith — suffix match.
eq
$eq — equal to value.
exists
$exists — field presence check.
glob
$glob — glob pattern match (supports * and ? wildcards).
gt
$gt — greater than value.
gte
$gte — greater than or equal to value.
icontains
$icontains — case-insensitive substring match.
in_
$in — field value is in the given list.
lt
$lt — less than value.
lte
$lte — less than or equal to value.
ne
$ne — not equal to value.
nin
$nin — field value is NOT in the given list.
or
$or — at least one condition must match.
regex
$regex — regular expression match.
starts_with
$startsWith — prefix match.