Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
gql-types-generator
Advanced tools
``` npm install --save gql-types-generator ``` ``` yarn add gql-types-generator ```
Package to generate types depending on GraphQL scheme, mutations and queries.
npm install --save gql-types-generator
yarn add gql-types-generator
gql-types-generator
provides 2 ways of generating types:
After installation of package is done, gql-types-generator
command
becomes available.
Usage: gql-types-generator [options] <schema-globs>
Options:
--sort <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-path <path> path to file where typings will be saved
-h, --help display help for command
If needed, you can use compile
function to generate types.
import {compile} from 'gql-types-generator';
import * as path from 'path';
compile({
source: [
path.resolve(__dirname, 'schema-artifacts-folder-1/*.graphql'),
path.resolve(__dirname, 'schema-artifacts-folder-2/*.graphql')
],
outputPath: path.resolve(__dirname, 'types.d.ts'),
sort: 'as-is',
});
// OR
compile({
source: path.resolve(__dirname, 'schema-artifacts/*.graphql'),
outputPath: path.resolve(__dirname, 'types.d.ts'),
sort: 'default',
});
// OR
compile({
// You can pass gql schema directly
schema: 'type Query { ... }',
outputPath: path.resolve(__dirname, 'types.d.ts'),
});
FAQs
``` npm install --save gql-types-generator ``` ``` yarn add gql-types-generator ```
We found that gql-types-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.