Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gql-types-generator

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gql-types-generator

``` npm install --save gql-types-generator ``` ``` yarn add gql-types-generator ```

  • 1.2.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by20%
Maintainers
1
Weekly downloads
 
Created
Source

gql-types-generator

NPM version Dependencies Size Version

Package to generate types depending on GraphQL scheme, mutations and queries.

Install

npm install --save gql-types-generator
yarn add gql-types-generator

Usage

gql-types-generator provides 2 ways of generating types:

  1. Command line interface;
  2. TypeScript / JavaScript code.

Warning

When using CLI, each glob will be formatted as process.cwd() + glob.

When using compile function directly through JS, it will not format any glob, so make sure you passed correct globs

Command line interface

After installation of package is done, gql-types-generator command becomes available.

Usage: gql-types-generator [options] <schema-globs>

Options:
  --operations <globs>       globs to find queries and mutations
  --remove-description       states if description should be removed
  --display <sort>           how to display compiled types. Valid values are "as-is" and "default". By default, generator compiles scalars first, then enums, interfaces, inputs, unions and then types. "as-is" places types as they are placed in schema
  --output-directory <path>  path to directory where typings will be saved
  -h, --help                 display help for command

Programmatic control

If needed, you can use compile function to generate types.

Options

Current list of options

Examples

When schema is separated between 2 directories:

import {compile} from 'gql-types-generator';
import * as path from 'path';

compile({
  schemaPath: [
    path.resolve(__dirname, 'schema-artifacts-folder-1/schema-part.graphql'),
    path.resolve(__dirname, 'schema-artifacts-folder-2/schema-part.graphql')
  ],
  outputDirectory:  path.resolve(__dirname, 'compiled'),
});

When all the schema partials are in the only 1 directory:

compile({
  schemaPath: path.resolve(__dirname, 'schema-artifacts/schema.graphql'),
  outputDirectory:  path.resolve(__dirname, 'compiled'),
});

When you already have schema as text:

compile({ 
  schema: 'type Query { ... }',
  outputDirectory:  path.resolve(__dirname, 'compiled'),
});

When you want to sort schema types as they are placed in original GQL schema:

compile({
  schemaPath: path.resolve(__dirname, 'schema-artifacts/*.graphql'),
  outputDirectory:  path.resolve(__dirname, 'compiled'),
  sort: 'as-is'
});

Getting schema partials with globs or glob

compile({
  schemaGlobs: {
    cwd: process.cwd(),
    globs: '/schema-artifacts/*.graphql',
    // OR
    globs: [
      '/schema-artifacts-folder-1/*.graphql', 
      '/schema-artifacts-folder-2/*.graphql'
    ],
  },
  outputDirectory:  path.resolve(__dirname, 'compiled'),
  sort: 'as-is'
});

Keywords

FAQs

Package last updated on 18 Mar 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc