Socket
Socket
Sign inDemoInstall

@graphql-codegen/schema-ast

Package Overview
Dependencies
4
Maintainers
5
Versions
4799
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-codegen/schema-ast

GraphQL Code Generator plugin for generating a .graphql file from a given schema


Version published
Weekly downloads
2.9M
increased by12.4%
Maintainers
5
Install size
2.33 MB
Created
Weekly downloads
 

Package description

What is @graphql-codegen/schema-ast?

@graphql-codegen/schema-ast is a plugin for GraphQL Code Generator that allows you to generate a GraphQL schema in AST (Abstract Syntax Tree) format. This can be useful for various purposes such as schema analysis, transformation, and validation.

What are @graphql-codegen/schema-ast's main functionalities?

Generate GraphQL Schema AST

This feature allows you to generate the AST representation of a GraphQL schema. The code sample demonstrates how to use the @graphql-codegen/schema-ast plugin to generate the AST from a simple GraphQL schema.

const { generate } = require('@graphql-codegen/schema-ast');
const schema = `
  type Query {
    hello: String
  }
`;

const config = {
  filename: 'schema.graphql',
  schema: schema,
  plugins: [
    {
      'schema-ast': {}
    }
  ],
  pluginMap: {
    'schema-ast': require('@graphql-codegen/schema-ast')
  }
};

generate(config).then(output => {
  console.log(output);
});

Customizing Output

This feature allows you to customize the output of the generated AST. The code sample shows how to enable comment descriptions in the generated AST.

const { generate } = require('@graphql-codegen/schema-ast');
const schema = `
  type Query {
    hello: String
  }
`;

const config = {
  filename: 'schema.graphql',
  schema: schema,
  plugins: [
    {
      'schema-ast': {
        commentDescriptions: true
      }
    }
  ],
  pluginMap: {
    'schema-ast': require('@graphql-codegen/schema-ast')
  }
};

generate(config).then(output => {
  console.log(output);
});

Other packages similar to @graphql-codegen/schema-ast

FAQs

Last updated on 05 Nov 2021

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc