DisBot
    Preparing search index...

    Type Alias VanityEmbedAuthorUpsertArgs<ExtArgs>

    VanityEmbedAuthor upsert

    type VanityEmbedAuthorUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            VanityEmbedAuthorCreateInput,
            VanityEmbedAuthorUncheckedCreateInput,
        >;
        include?: VanityEmbedAuthorInclude<ExtArgs>
        | null;
        omit?: VanityEmbedAuthorOmit<ExtArgs> | null;
        select?: VanityEmbedAuthorSelect<ExtArgs> | null;
        update: XOR<
            VanityEmbedAuthorUpdateInput,
            VanityEmbedAuthorUncheckedUpdateInput,
        >;
        where: VanityEmbedAuthorWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the VanityEmbedAuthor

    Select specific fields to fetch from the VanityEmbedAuthor

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

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