DisBot
    Preparing search index...

    Type Alias ReactionRoleButtonUpsertArgs<ExtArgs>

    ReactionRoleButton upsert

    type ReactionRoleButtonUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            ReactionRoleButtonCreateInput,
            ReactionRoleButtonUncheckedCreateInput,
        >;
        include?: ReactionRoleButtonInclude<ExtArgs>
        | null;
        omit?: ReactionRoleButtonOmit<ExtArgs> | null;
        select?: ReactionRoleButtonSelect<ExtArgs> | null;
        update: XOR<
            ReactionRoleButtonUpdateInput,
            ReactionRoleButtonUncheckedUpdateInput,
        >;
        where: ReactionRoleButtonWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the ReactionRoleButton

    Select specific fields to fetch from the ReactionRoleButton

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

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