DisBot
    Preparing search index...

    Type Alias GuildAutoReactsUpsertArgs<ExtArgs>

    GuildAutoReacts upsert

    type GuildAutoReactsUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildAutoReactsCreateInput,
            GuildAutoReactsUncheckedCreateInput,
        >;
        include?: GuildAutoReactsInclude<ExtArgs>
        | null;
        omit?: GuildAutoReactsOmit<ExtArgs> | null;
        select?: GuildAutoReactsSelect<ExtArgs> | null;
        update: XOR<
            GuildAutoReactsUpdateInput,
            GuildAutoReactsUncheckedUpdateInput,
        >;
        where: GuildAutoReactsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildAutoReacts

    Select specific fields to fetch from the GuildAutoReacts

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

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