DisBot
    Preparing search index...

    Type Alias TicketFeedbackUpsertArgs<ExtArgs>

    TicketFeedback upsert

    type TicketFeedbackUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            TicketFeedbackCreateInput,
            TicketFeedbackUncheckedCreateInput,
        >;
        include?: TicketFeedbackInclude<ExtArgs>
        | null;
        omit?: TicketFeedbackOmit<ExtArgs> | null;
        select?: TicketFeedbackSelect<ExtArgs> | null;
        update: XOR<TicketFeedbackUpdateInput, TicketFeedbackUncheckedUpdateInput>;
        where: TicketFeedbackWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    include?: TicketFeedbackInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    Omit specific fields from the TicketFeedback

    select?: TicketFeedbackSelect<ExtArgs> | null

    Select specific fields to fetch from the TicketFeedback

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

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