DisBot
    Preparing search index...

    Type Alias DiscordGuildAddonUpsertArgs<ExtArgs>

    DiscordGuildAddon upsert

    type DiscordGuildAddonUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            DiscordGuildAddonCreateInput,
            DiscordGuildAddonUncheckedCreateInput,
        >;
        include?: DiscordGuildAddonInclude<ExtArgs>
        | null;
        omit?: DiscordGuildAddonOmit<ExtArgs> | null;
        select?: DiscordGuildAddonSelect<ExtArgs> | null;
        update: XOR<
            DiscordGuildAddonUpdateInput,
            DiscordGuildAddonUncheckedUpdateInput,
        >;
        where: DiscordGuildAddonWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the DiscordGuildAddon

    Select specific fields to fetch from the DiscordGuildAddon

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

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