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

    Interface ParsedEntityConfig

    Parsed per-entity configuration.

    interface ParsedEntityConfig {
        defaultLimit: number;
        defaultPageSize: number;
        shardBumps: ShardBump[];
        timestampProperty: string;
        uniqueProperty: string;
    }
    Index

    Properties

    defaultLimit: number

    Default max items returned by EntityManager.query for this entity (across all shards).

    defaultPageSize: number

    Default per-shard page size used by EntityManager.query for this entity.

    shardBumps: ShardBump[]

    Shard bump schedule for this entity (time-based sharding scale-up).

    timestampProperty: string

    Property token whose value selects the shard bump (typically a timestamp).

    uniqueProperty: string

    Property token used to dedupe and build the global range key.