DisBot
    Preparing search index...

    Type Alias TicketModalDataUpsertArgs<ExtArgs>

    TicketModalData upsert

    type TicketModalDataUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            TicketModalDataCreateInput,
            TicketModalDataUncheckedCreateInput,
        >;
        include?: TicketModalDataInclude<ExtArgs>
        | null;
        omit?: TicketModalDataOmit<ExtArgs> | null;
        select?: TicketModalDataSelect<ExtArgs> | null;
        update: XOR<
            TicketModalDataUpdateInput,
            TicketModalDataUncheckedUpdateInput,
        >;
        where: TicketModalDataWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the TicketModalData

    Select specific fields to fetch from the TicketModalData

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

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