Type alias QueryRequest

QueryRequest: {
    accountId: Id;
    anchor?: Id | null;
    anchorOffset?: number;
    calculateTotal?: boolean;
    filter?: FilterOperator | FilterCondition | null;
    limit?: number | null;
    position?: number;
    sort?: Comparator[] | null;
}

Type declaration

  • accountId: Id
  • Optional anchor?: Id | null
  • Optional anchorOffset?: number
  • Optional calculateTotal?: boolean
  • Optional filter?: FilterOperator | FilterCondition | null
  • Optional limit?: number | null
  • Optional position?: number
  • Optional sort?: Comparator[] | null