@robert-brightline/pms-db - v0.0.21
    Preparing search index...

    Type Alias AuditLogUpsertArgs<ExtArgs>

    AuditLog upsert

    type AuditLogUpsertArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        create: Prisma.XOR<AuditLogCreateInput, AuditLogUncheckedCreateInput>;
        omit?: AuditLogOmit<ExtArgs> | null;
        select?: AuditLogSelect<ExtArgs> | null;
        update: Prisma.XOR<AuditLogUpdateInput, AuditLogUncheckedUpdateInput>;
        where: AuditLogWhereUniqueInput;
    }

    Type Parameters

    • ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs
    Index

    Properties

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

    omit?: AuditLogOmit<ExtArgs> | null

    Omit specific fields from the AuditLog

    select?: AuditLogSelect<ExtArgs> | null

    Select specific fields to fetch from the AuditLog

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

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