Type alias KeyRangeExpression

KeyRangeExpression: {
    op: "gte" | "gt" | "lte" | "lt" | "begins_with";
    value: string;
} | {
    max: string;
    min: string;
    op: "between";
}

The range expression to use on the sort key (_id) when querying for child collection objects with findChildren.

Type declaration

  • op: "gte" | "gt" | "lte" | "lt" | "begins_with"
  • value: string

Type declaration

  • max: string
  • min: string
  • op: "between"

Generated using TypeDoc