@squidcloud/backend
    Preparing search index...

    Interface NotInContextCondition<Doc, F>

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

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

    Type Parameters

    • Doc extends DocumentData = any
    • F extends Paths<Doc> = Paths<Doc>

    Hierarchy

    • SimpleCondition<Doc, F, "not in">
      • NotInContextCondition
    Index

    Properties

    fieldName: F

    The field name to apply the condition to.

    operator: "not in"

    Specifies the 'not in' operator to check if a value does not exist within an array.

    value: any[]

    An array of values to exclude from the field.