Entity
    Preparing search index...

    Type Alias SQLBinding<TFields>

    SQLBinding:
        | { type: "value"; value: SupportedSQLValue }
        | { name: string; type: "identifier" }
        | { fieldName: keyof TFields; type: "entityField" }

    Types of bindings that can be used in SQL queries.

    Type Parameters

    • TFields extends Record<string, any>