Documentation
    Preparing search index...

    Type Alias WhereAttributeHashValue<AttributeType>

    WhereAttributeHashValue:
        | AllowNotOrAndRecursive<
            AttributeType extends any[]
                ? | WhereOperators<AttributeType>[typeof eq]
                | WhereOperators<AttributeType>
                :
                    | WhereOperators<AttributeType>[typeof in]
                    | WhereOperators<AttributeType>[typeof eq]
                    | WhereOperators<AttributeType>,
        >
        | WhereAttributeHash<any>

    Types that can be compared to an attribute in a WHERE context.

    Type Parameters

    • AttributeType