interface QueryResult<T> { items: AsyncIterableIterator<T, any, any>; toArray(): Promise<T[]>; total: Promise<number>; } Properties
items
items: AsyncIterableIterator<T, any, any> total
total: Promise<number>
Methods
toArray
- toArray(): Promise<T[]>
Returns Promise<T[]>
A result of a query operation.