Search on custom metadata fields

You can do a search on custom metadata fields.

Comparators

To do a search, you can also use the following comparators:

=
Is equal to.
<>
Is not equal to.
<
Is less than.
>
Is greater than.
<=
Is less than or equal to.
>=
Is greater than or equal to.
is
When you search for null values:
is null
Indicates a null (or no) value.
is not null
Indicates a valid value that is not null.
Conjunctions

You can also use conjunctions.

AND
Tie together multiple filter criteria.
OR
Meet at least one of multiple filter criteria.
Helpers

You can also use helpers.

NOW()
Get the current TIMESTAMP.
DAYS/MONTHS/YEARS
Compares TIMESTAMP/DATE values.
Wildcards

You can also use a wildcard.

%
You can use a wildcard like % with the keyword LIKE to form a wildcard search.
Note: Both single quotation marks (') and backslashes (\) need to be escaped with a leading backslash. For example, if the search statement is: mytag in ('first', 'can't', 'with\slash'), the following convention needs to be followed to escape it:

mytag in ('first', 'can\'t', 'with\\slash').