Interface QueryOptions

Specifies additional options for querying items, including optional index name and filter conditions.

interface QueryOptions {
    filter?: FilterParams;
    indexName?: string;
}

Hierarchy (view full)

Properties

Properties

filter?: FilterParams

Optional filter conditions to apply to the query.

indexName?: string

Optional name of the secondary index to use in the query.

Generated using TypeDoc