DisBot
    Preparing search index...

    Type Alias VanityAnalyticUpsertArgs<ExtArgs>

    VanityAnalytic upsert

    type VanityAnalyticUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            VanityAnalyticCreateInput,
            VanityAnalyticUncheckedCreateInput,
        >;
        include?: VanityAnalyticInclude<ExtArgs>
        | null;
        omit?: VanityAnalyticOmit<ExtArgs> | null;
        select?: VanityAnalyticSelect<ExtArgs> | null;
        update: XOR<VanityAnalyticUpdateInput, VanityAnalyticUncheckedUpdateInput>;
        where: VanityAnalyticWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    include?: VanityAnalyticInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    Omit specific fields from the VanityAnalytic

    select?: VanityAnalyticSelect<ExtArgs> | null

    Select specific fields to fetch from the VanityAnalytic

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

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