DisBot
    Preparing search index...

    Type Alias GuildComponentManagerUpsertArgs<ExtArgs>

    GuildComponentManager upsert

    type GuildComponentManagerUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            GuildComponentManagerCreateInput,
            GuildComponentManagerUncheckedCreateInput,
        >;
        include?: GuildComponentManagerInclude<ExtArgs>
        | null;
        omit?: GuildComponentManagerOmit<ExtArgs> | null;
        select?: GuildComponentManagerSelect<ExtArgs> | null;
        update: XOR<
            GuildComponentManagerUpdateInput,
            GuildComponentManagerUncheckedUpdateInput,
        >;
        where: GuildComponentManagerWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildComponentManager

    Select specific fields to fetch from the GuildComponentManager

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

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