@squidcloud/backend
    Preparing search index...

    Type Alias GenericValue<Doc, F, O>

    GenericValue: O extends "in"
        ? DeepRecord<Doc>[F][]
        | null
        : O extends "not in"
            ? DeepRecord<Doc>[F][]
            | null
            : DeepRecord<Doc>[F] | null

    A generic value that can exist in a query.

    Type Parameters

    • Doc = any
    • F extends Paths<Doc> = Paths<Doc>
    • O extends AllOperators = any