DisBot
    Preparing search index...

    Type Alias GuildLeaveSetupUpsertArgs<ExtArgs>

    GuildLeaveSetup upsert

    type GuildLeaveSetupUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildLeaveSetupCreateInput,
            GuildLeaveSetupUncheckedCreateInput,
        >;
        include?: GuildLeaveSetupInclude<ExtArgs>
        | null;
        omit?: GuildLeaveSetupOmit<ExtArgs> | null;
        select?: GuildLeaveSetupSelect<ExtArgs> | null;
        update: XOR<
            GuildLeaveSetupUpdateInput,
            GuildLeaveSetupUncheckedUpdateInput,
        >;
        where: GuildLeaveSetupWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildLeaveSetup

    Select specific fields to fetch from the GuildLeaveSetup

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

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