@karmaniverous/entity-manager
    Preparing search index...

    Interface ShardQueryResult<C>Protected

    A result returned by a ShardQueryFunction querying an individual shard.

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

    Type Parameters

    Index

    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.