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 schema.
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]
Options:
-o --output-path <path> path to file where typings will be saved
-s --schema-artifacts <globs> glob used to find schema artifacts. These artifacts will be concatenated into the only 1 file and parsed by graphql package
-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'),
});
// OR
compile({
source: path.resolve(__dirname, 'schema-artifacts/*.graphql'),
outputPath: path.resolve(__dirname, 'types.d.ts'),
});
// 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 ```
The npm package gql-types-generator receives a total of 5 weekly downloads. As such, gql-types-generator popularity was classified as not popular.
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.