Enum MetadataFilterOperator
Identifies the operation a MetadataFilter node applies. Comparison operators evaluate one metadata key against one or more typed values; And and Or combine child filters.
public enum MetadataFilterOperator
Fields
Equal = 0The metadata value equals the filter value.
NotEqual = 1The metadata key is present and its value differs from the filter value.
GreaterThan = 2The metadata value is strictly greater than the filter value.
GreaterThanOrEqual = 3The metadata value is greater than or equal to the filter value.
LessThan = 4The metadata value is strictly less than the filter value.
LessThanOrEqual = 5The metadata value is less than or equal to the filter value.
In = 6The metadata value equals at least one of the filter values.
NotIn = 7The metadata key is present and its value equals none of the filter values.
Exists = 8The metadata key is present (or absent, when the filter value is
false), regardless of its value.And = 9Every child filter matches.
Or = 10At least one child filter matches.