@squidcloud/backend
    Preparing search index...

    Interface InContextCondition<Doc, F>

    A condition using the 'in' operator to match values within a set.

    interface InContextCondition<
        Doc extends DocumentData = any,
        F extends Paths<Doc> = Paths<Doc>,
    > {
        fieldName: F;
        operator: "in";
        value: any[];
    }

    Type Parameters

    Hierarchy

    Index

    Properties

    fieldName: F

    The field name to apply the condition to.

    operator: "in"

    Specifies the 'in' operator to check if a value exists within an array.

    value: any[]

    An array of values to match against the field.