@squidcloud/client
    Preparing search index...

    Interface DocIdCondition<Doc>

    A condition that filters documents by their identity for collections with composite primary keys. Each entry in docIds maps primary-key field names to values and represents one AND grouping. The list of entries is ORed together.

    interface DocIdCondition<Doc extends DocumentData = any> {
        docIds: Record<FieldName<Doc>, any>[];
        operator: DocIdOperator;
    }

    Type Parameters

    Index

    Properties

    Properties

    docIds: Record<FieldName<Doc>, any>[]

    The list of composite-key value groups

    operator: DocIdOperator

    The operator applied to the set of doc-id values. Limited to the equality family.