1.0.3 • Published 3 years ago

@ovidb/graphql-to-yup v1.0.3

Weekly downloads
21
License
ISC
Repository
github
Last release
3 years ago

Plugin for graphql-codegen to Generate Yup schema from GraphQL

Currently only works with input types

##Usage

Install

If you want to run it from your project:

npm install --save-dev @ovidb/graphql-to-yup

you could also install it globally:

npm install -g @ovidb/graphql-to-yup

Setup using codegen.yml

You will need to create a codegen.yml file

schema: point/to/your/schema.graphql
generates:
  the-output-file.js:
    plugins:
      - @ovidb/graphql-to-yup
    config:
      inputTypeNames:
        - TheTypesYouWantToGenerateSchemaFor
        - AnotherInputType