Interface WeivDataQueryReferencedResult<CItem>

interface WeivDataQueryReferencedResult<CItem> {
    items: CItem[];
    totalCount: number;
    hasNext(): boolean;
    hasPrev(): boolean;
    next(): Promise<WeivDataQueryReferencedResult<CItem>>;
    prev(): Promise<WeivDataQueryReferencedResult<CItem>>;
}

Type Parameters

  • CItem

Properties

items: CItem[]

Returns the items that match the reference query.

totalCount: number

Returns the total number of items that match the reference query.

Methods

  • Returns boolean

    Indicates if the reference query has more results.

  • Returns boolean

    Indicates if the reference query has previous results.