augment-vir - v31.13.0
    Preparing search index...

    Type Alias BasePrismaPayload

    A base type for Prisma model payloads because Prisma doesn't give us one. This currently only includes the properties that are used within this package.

    Note: this omits the composites property because I don't have any examples of what those actually are.

    type BasePrismaPayload = {
        name: string;
        objects: Record<string, BasePrismaPayload | BasePrismaPayload[] | null>;
        scalars: AnyObject;
    }
    Index

    Properties

    Properties

    name: string
    objects: Record<string, BasePrismaPayload | BasePrismaPayload[] | null>
    scalars: AnyObject