Enum FilterOperator
Operator for a metadata filter condition.
public enum FilterOperator
Fields
Eq = 0Exact match. Equivalent to SQL
=.Exists = 9Metadata key exists.
Gt = 2Greater than. Equivalent to SQL
>.Gte = 3Greater than or equal. Equivalent to SQL
>=.In = 6Value is in a set. Equivalent to SQL
IN (...).Like = 8SQL LIKE pattern match.
Lt = 4Less than. Equivalent to SQL
<.Lte = 5Less than or equal. Equivalent to SQL
<=.Ne = 1Not equal. Equivalent to SQL
!=. Records without the key do not match.NotExists = 10Metadata key does not exist.
NotIn = 7Value is not in a set. Equivalent to SQL
NOT IN (...). Records without the key do not match.