DisBot
    Preparing search index...

    Type Alias GuildChannelLinksUpsertArgs<ExtArgs>

    GuildChannelLinks upsert

    type GuildChannelLinksUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildChannelLinksCreateInput,
            GuildChannelLinksUncheckedCreateInput,
        >;
        include?: GuildChannelLinksInclude<ExtArgs>
        | null;
        omit?: GuildChannelLinksOmit<ExtArgs> | null;
        select?: GuildChannelLinksSelect<ExtArgs> | null;
        update: XOR<
            GuildChannelLinksUpdateInput,
            GuildChannelLinksUncheckedUpdateInput,
        >;
        where: GuildChannelLinksWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildChannelLinks

    Select specific fields to fetch from the GuildChannelLinks

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

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