Type alias RecordsQueryResponse

RecordsQueryResponse: DwnResponseStatus & {
    cursor?: DwnPaginationCursor;
    records?: Record[];
}

Represents the response from a records query operation, including status, records, and an optional pagination cursor.

Type declaration

  • Optional cursor?: DwnPaginationCursor

    If there are additional results, the messageCid of the last record will be returned as a pagination cursor.

  • Optional records?: Record[]

    Array of records matching the query.

Generated using TypeDoc