DisBot
    Preparing search index...

    Type Alias BuildInCommandsUpsertArgs<ExtArgs>

    BuildInCommands upsert

    type BuildInCommandsUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            BuildInCommandsCreateInput,
            BuildInCommandsUncheckedCreateInput,
        >;
        include?: BuildInCommandsInclude<ExtArgs>
        | null;
        omit?: BuildInCommandsOmit<ExtArgs> | null;
        select?: BuildInCommandsSelect<ExtArgs> | null;
        update: XOR<
            BuildInCommandsUpdateInput,
            BuildInCommandsUncheckedUpdateInput,
        >;
        where: BuildInCommandsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

    In case the BuildInCommands found by the where argument doesn't exist, create a new BuildInCommands with this data.

    Choose, which related nodes to fetch as well

    Omit specific fields from the BuildInCommands

    Select specific fields to fetch from the BuildInCommands

    In case the BuildInCommands was found with the provided where argument, update it with this data.

    The filter to search for the BuildInCommands to update in case it exists.