DisBot
    Preparing search index...

    Type Alias LeaveImageDataUpsertArgs<ExtArgs>

    LeaveImageData upsert

    type LeaveImageDataUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            LeaveImageDataCreateInput,
            LeaveImageDataUncheckedCreateInput,
        >;
        include?: LeaveImageDataInclude<ExtArgs>
        | null;
        omit?: LeaveImageDataOmit<ExtArgs> | null;
        select?: LeaveImageDataSelect<ExtArgs> | null;
        update: XOR<LeaveImageDataUpdateInput, LeaveImageDataUncheckedUpdateInput>;
        where: LeaveImageDataWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    include?: LeaveImageDataInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    Omit specific fields from the LeaveImageData

    select?: LeaveImageDataSelect<ExtArgs> | null

    Select specific fields to fetch from the LeaveImageData

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

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