1.0.2 • Published 5 years ago

graphql-tag-typescript-schema v1.0.2

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

Graphql-tag Typescript Schema

graphql-tag-typescript-schema plugin prints the merged schema as graphql-tag in a .ts to be used with eg. Apollo Client. If multiple schemas are provided, they will be merged and printed as one schema.

The .ts file exposes a JavaScript template literal tag that parses GraphQL query strings into the standard GraphQL AST. Make sure to have graphql-tag installed in the application you are using the output.

Installation

$ yarn add -D graphql-tag-typescript-schema

Examples

# ...
schema:
  - 'http://localhost:3000/graphql'
  - './src/**/*.graphql'
generates:
  path/to/file.ts:
    plugins:
      - graphql-tag-typescript-schema

Result

import gql from 'graphql-tag'

export const schema = gql`
    type ExampleType {
        example: Boolean!
    }
`

export default schema