DisBot
    Preparing search index...

    Type Alias GuildDisBotAutoModerationUpsertArgs<ExtArgs>

    GuildDisBotAutoModeration upsert

    type GuildDisBotAutoModerationUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            GuildDisBotAutoModerationCreateInput,
            GuildDisBotAutoModerationUncheckedCreateInput,
        >;
        include?: GuildDisBotAutoModerationInclude<ExtArgs>
        | null;
        omit?: GuildDisBotAutoModerationOmit<ExtArgs> | null;
        select?: GuildDisBotAutoModerationSelect<ExtArgs> | null;
        update: XOR<
            GuildDisBotAutoModerationUpdateInput,
            GuildDisBotAutoModerationUncheckedUpdateInput,
        >;
        where: GuildDisBotAutoModerationWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildDisBotAutoModeration

    Select specific fields to fetch from the GuildDisBotAutoModeration

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

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