DisBot
    Preparing search index...

    Type Alias TicketPermissionsUpsertArgs<ExtArgs>

    TicketPermissions upsert

    type TicketPermissionsUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            TicketPermissionsCreateInput,
            TicketPermissionsUncheckedCreateInput,
        >;
        include?: TicketPermissionsInclude<ExtArgs>
        | null;
        omit?: TicketPermissionsOmit<ExtArgs> | null;
        select?: TicketPermissionsSelect<ExtArgs> | null;
        update: XOR<
            TicketPermissionsUpdateInput,
            TicketPermissionsUncheckedUpdateInput,
        >;
        where: TicketPermissionsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the TicketPermissions

    Select specific fields to fetch from the TicketPermissions

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

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