Type Alias EntityKeyConditions<T>

EntityKeyConditions: {
    [K in keyof T as T[K] extends PartitionKey ? K : never]-?: string
} & {
    [K in keyof T as T[K] extends SortKey ? K : never]?:
        | string
        | BeginsWithFilter
}

Defines key conditions for querying entities based on their keys.

PartitionKey is required, SortKey is optional.

Type Parameters

  • T

    The type of the entity being queried, extending DynaRecord.