@earth-app/collegedb
    Preparing search index...

    Interface BuildUpsertOptions

    Options accepted by buildUpsert.

    interface BuildUpsertOptions {
        dialect?: SQLDialect;
        returning?: string | boolean | string[];
        update?: string[];
    }
    Index
    dialect?: SQLDialect

    Dialect of the target shard, used to quote identifiers

    1.4.0

    returning?: string | boolean | string[]

    Append a RETURNING clause; true returns *, or pass explicit columns

    update?: string[]

    Columns to overwrite on conflict. Defaults to every inserted column that is not part of conflictColumns.