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
  • Optionalanchor?: Id | null
  • OptionalanchorOffset?: number

    default: 0. Negative values supported

  • OptionalcalculateTotal?: boolean

    default: false

  • Optionalfilter?: FilterOperator | FilterCondition | null
  • Optionallimit?: number | null

    uint

  • Optionalposition?: number

    default: 0. Like index in array. Negative values supported

  • Optionalsort?: Comparator[] | null