DisBot
    Preparing search index...

    Type Alias GuildAutoRolesUpsertArgs<ExtArgs>

    GuildAutoRoles upsert

    type GuildAutoRolesUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildAutoRolesCreateInput,
            GuildAutoRolesUncheckedCreateInput,
        >;
        include?: GuildAutoRolesInclude<ExtArgs>
        | null;
        omit?: GuildAutoRolesOmit<ExtArgs> | null;
        select?: GuildAutoRolesSelect<ExtArgs> | null;
        update: XOR<GuildAutoRolesUpdateInput, GuildAutoRolesUncheckedUpdateInput>;
        where: GuildAutoRolesWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    include?: GuildAutoRolesInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildAutoRoles

    select?: GuildAutoRolesSelect<ExtArgs> | null

    Select specific fields to fetch from the GuildAutoRoles

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

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