DisBot
    Preparing search index...

    Type Alias WelcomeImageDataUpsertArgs<ExtArgs>

    WelcomeImageData upsert

    type WelcomeImageDataUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            WelcomeImageDataCreateInput,
            WelcomeImageDataUncheckedCreateInput,
        >;
        include?: WelcomeImageDataInclude<ExtArgs>
        | null;
        omit?: WelcomeImageDataOmit<ExtArgs> | null;
        select?: WelcomeImageDataSelect<ExtArgs> | null;
        update: XOR<
            WelcomeImageDataUpdateInput,
            WelcomeImageDataUncheckedUpdateInput,
        >;
        where: WelcomeImageDataWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the WelcomeImageData

    Select specific fields to fetch from the WelcomeImageData

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

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