Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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:
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
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
If needed, you can use compile
function to generate types.
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'
});
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.