6.0.1 • Published 6 months ago

@pmaltese/prisma-schema-generator v6.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Node.js CI

JavaScript interface for Prisma Schema DSL

Installation

npm install prisma-schema-dsl

API

Print

print(schema: Schema): Promise<string>

Prints Prisma schema file from AST. The schema is formatted using prisma-format.

Builders

createSchema(models: Model[], dataSource?: DataSource): Schema

Creates a schema AST object

createEnum(name: string, values: string[], documentation?: string): Enum

  • Creates an enum AST object
  • Validates given name argument

createModel(name: string, fields: Array<ScalarField | ObjectField>): Model

  • Creates a model AST object
  • Validates given name argument

createScalarField(name: string, type: ScalarType, isList: boolean = false, isRequired: boolean = false, isUnique: boolean = false, isId: boolean = false, isUpdatedAt: boolean = false, default: | null | boolean | CallExpression | number | string = null): ScalarField

  • Creates a scalar field AST object
  • Validates given name argument

createObjectField(name: string, type: string, isList: boolean = false, isRequired: boolean = false, relationName: string | null = null, relationToFields: string[] = [], relationToReferences: string[] = [], relationOnDelete: "NONE" = "NONE"): ObjectField

  • Creates an object field AST object
  • Validates given name argument

createDataSource(name: string, provider: DataSourceProvider, url: string | DataSourceURLEnv): DataSource

Creates a data source AST object

Development

  • Clone the repository git clone git@github.com:amplication/prisma-schema-dsl.git
  • Make sure to use npm@7 npm i -g npm@7
  • Install the dependencies npm install
  • Run tests npm test

Created with <3 by amplication

5.2.1

7 months ago

5.2.0

7 months ago

6.0.1

6 months ago

6.0.0

7 months ago

5.1.0

1 year ago

5.0.0

1 year ago

4.1.1

1 year ago

4.1.0

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago