DisBot
    Preparing search index...

    Type Alias GuildAutoPublishUpsertArgs<ExtArgs>

    GuildAutoPublish upsert

    type GuildAutoPublishUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildAutoPublishCreateInput,
            GuildAutoPublishUncheckedCreateInput,
        >;
        include?: GuildAutoPublishInclude<ExtArgs>
        | null;
        omit?: GuildAutoPublishOmit<ExtArgs> | null;
        select?: GuildAutoPublishSelect<ExtArgs> | null;
        update: XOR<
            GuildAutoPublishUpdateInput,
            GuildAutoPublishUncheckedUpdateInput,
        >;
        where: GuildAutoPublishWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildAutoPublish

    Select specific fields to fetch from the GuildAutoPublish

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

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