Skip to main content

TypeScript shape

interface ComparisonOperatorInput {
  gt?: string | null;
  gte?: string | null;
  lt?: string | null;
  lte?: string | null;
  eq?: string | null;
}
All values are stringified numbers. At least one operator should be set.
gt
String
Strictly greater than.
gte
String
Greater than or equal to.
lt
String
Strictly less than.
lte
String
Less than or equal to.
eq
String
Equal to.