DisBot
    Preparing search index...

    Type Alias GuildUserModerationUpsertArgs<ExtArgs>

    GuildUserModeration upsert

    type GuildUserModerationUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildUserModerationCreateInput,
            GuildUserModerationUncheckedCreateInput,
        >;
        include?: GuildUserModerationInclude<ExtArgs>
        | null;
        omit?: GuildUserModerationOmit<ExtArgs> | null;
        select?: GuildUserModerationSelect<ExtArgs> | null;
        update: XOR<
            GuildUserModerationUpdateInput,
            GuildUserModerationUncheckedUpdateInput,
        >;
        where: GuildUserModerationWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildUserModeration

    Select specific fields to fetch from the GuildUserModeration

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

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