DisBot
    Preparing search index...

    Type Alias GuildSpotifyNotificationsUpsertArgs<ExtArgs>

    GuildSpotifyNotifications upsert

    type GuildSpotifyNotificationsUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            GuildSpotifyNotificationsCreateInput,
            GuildSpotifyNotificationsUncheckedCreateInput,
        >;
        include?: GuildSpotifyNotificationsInclude<ExtArgs>
        | null;
        omit?: GuildSpotifyNotificationsOmit<ExtArgs> | null;
        select?: GuildSpotifyNotificationsSelect<ExtArgs> | null;
        update: XOR<
            GuildSpotifyNotificationsUpdateInput,
            GuildSpotifyNotificationsUncheckedUpdateInput,
        >;
        where: GuildSpotifyNotificationsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildSpotifyNotifications

    Select specific fields to fetch from the GuildSpotifyNotifications

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

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