Interface ShardQueryResult<C>Protected

A result returned by a ShardQueryFunction querying an individual shard.

interface ShardQueryResult<C> {
    count: number;
    items: EntityItem<C>[];
    pageKey?: PageKey<C>;
}

Type Parameters

Properties

Properties

count: number

The number of records returned.

items: EntityItem<C>[]

The returned records.

pageKey?: PageKey<C>

The page key for the next query on this shard.