Table of Contents

Enum FilterOperator

Namespace
Mythosia.VectorDb
Assembly
Mythosia.VectorDb.Abstractions.dll

Operator for a metadata filter condition.

public enum FilterOperator

Fields

Eq = 0

Exact match. Equivalent to SQL =.

Exists = 9

Metadata key exists.

Gt = 2

Greater than. Equivalent to SQL >.

Gte = 3

Greater than or equal. Equivalent to SQL >=.

In = 6

Value is in a set. Equivalent to SQL IN (...).

Like = 8

SQL LIKE pattern match.

Lt = 4

Less than. Equivalent to SQL <.

Lte = 5

Less than or equal. Equivalent to SQL <=.

Ne = 1

Not equal. Equivalent to SQL !=. Records without the key do not match.

NotExists = 10

Metadata key does not exist.

NotIn = 7

Value is not in a set. Equivalent to SQL NOT IN (...). Records without the key do not match.