Socket
Socket
Sign inDemoInstall

prisma-generate-schema

Package Overview
Dependencies
33
Maintainers
1
Versions
474
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prisma-generate-schema

Transform prisma datamodel SDL into graphql-js SDL


Version published
Weekly downloads
5.6K
decreased by-59.45%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

prisma-generate-schema

This module is capable of generating a prisma OpenCRUD schema for a given datamodel, given in SDL.

Developing

Development uses typescript, npm, yarn and jest.

yarn
npm run test

Usage

Basic Usage:

import { generateCRUDSchemaString } from 'prisma-generate-schema'

const openCRUDSchema = generateCRUDSchemaString(modelInSDL)

Project Structure

This section is intended for maintainers.

First, a datamodel is parsed using the DatamodelParser. Then, an OpenCRUD schema is created using the SchemaGenerator.

The schema generator utilizes several other generators to generate the mutation, query and subscription objects and all corresponding types. A Generator is usually responsible for a single type only but will access other generators to recursively build the schema. All generators which return object types implement lazy evaluation and caching of generated types via their base class. The generators can be configured using dependency injection, if needed, to switch out the implementation for certain types in the schema.

All default generators, i.e. generators for a relational model, one for each type that can occur in an OpenCRUD schema, can ge found in the DefaultGenerators class.

All special document generators, i.e. generators for a document model, can ge found in the DocumentGenerators class.

FAQs

Last updated on 11 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc