DisBot
    Preparing search index...

    Type Alias GuildReactionRolesUpsertArgs<ExtArgs>

    GuildReactionRoles upsert

    type GuildReactionRolesUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildReactionRolesCreateInput,
            GuildReactionRolesUncheckedCreateInput,
        >;
        include?: GuildReactionRolesInclude<ExtArgs>
        | null;
        omit?: GuildReactionRolesOmit<ExtArgs> | null;
        select?: GuildReactionRolesSelect<ExtArgs> | null;
        update: XOR<
            GuildReactionRolesUpdateInput,
            GuildReactionRolesUncheckedUpdateInput,
        >;
        where: GuildReactionRolesWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildReactionRoles

    Select specific fields to fetch from the GuildReactionRoles

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

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