kysely
    Preparing search index...

    Interface InsertQueryNode

    interface InsertQueryNode {
        columns?: readonly ColumnNode[];
        defaultValues?: boolean;
        endModifiers?: readonly OperationNode[];
        explain?: ExplainNode;
        ignore?: boolean;
        into?: TableNode;
        kind: "InsertQueryNode";
        onConflict?: OnConflictNode;
        onDuplicateKey?: OnDuplicateKeyNode;
        orAction?: OrActionNode;
        output?: OutputNode;
        replace?: boolean;
        returning?: ReturningNode;
        top?: TopNode;
        values?: OperationNode;
        with?: WithNode;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columns?: readonly ColumnNode[]
    defaultValues?: boolean
    endModifiers?: readonly OperationNode[]
    explain?: ExplainNode
    ignore?: boolean

    use orAction instead.

    into?: TableNode
    kind: "InsertQueryNode"
    onConflict?: OnConflictNode
    onDuplicateKey?: OnDuplicateKeyNode
    orAction?: OrActionNode
    output?: OutputNode
    replace?: boolean
    returning?: ReturningNode
    top?: TopNode
    values?: OperationNode
    with?: WithNode