prorm API Reference
    Preparing search index...

    Interface PrismaField

    interface PrismaField {
        name: string;
        type: string;
        isArray: boolean;
        isOptional: boolean;
        attributes: PrismaAttribute[];
    }
    Index
    name: string
    type: string

    Prisma scalar type name (String, Int, ...) or another model/enum name for relations, with []/? already stripped.

    isArray: boolean
    isOptional: boolean
    attributes: PrismaAttribute[]