DisBot
    Preparing search index...

    Type Alias GuildTwitchNotificationsUpsertArgs<ExtArgs>

    GuildTwitchNotifications upsert

    type GuildTwitchNotificationsUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            GuildTwitchNotificationsCreateInput,
            GuildTwitchNotificationsUncheckedCreateInput,
        >;
        include?: GuildTwitchNotificationsInclude<ExtArgs>
        | null;
        omit?: GuildTwitchNotificationsOmit<ExtArgs> | null;
        select?: GuildTwitchNotificationsSelect<ExtArgs> | null;
        update: XOR<
            GuildTwitchNotificationsUpdateInput,
            GuildTwitchNotificationsUncheckedUpdateInput,
        >;
        where: GuildTwitchNotificationsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildTwitchNotifications

    Select specific fields to fetch from the GuildTwitchNotifications

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

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