Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
babel-plugin-extract-gql
Advanced tools
Extracts all graphql queries into a file
npx babel ./proj-a/ --out-dir ./out --plugins=extract-gql --presets=@babel/env,@babel/react
All input files are analyzed and transformed when a graphql query is found
Example
import { useQuery, persist } from 'graphql-hooks'
const SOME_QUERY = persist`
query Add($x: Int!, $y: Int!) {
add(x: $x, y: $y)
}
`
const MyCompA = () => {
const { data } = useQuery(SOME_QUERY)
}
Becomes
import { useQuery, persist } from 'graphql-hooks'
const SOME_QUERY =
'd012f1a214f5e2117ec9d9aa16d5b8b5ef95f755252cb8488c3a742eebcc6db9'
const MyCompA = () => {
const { data } = useQuery(SOME_QUERY, {
persisted: true
})
}
Note there are two changes.
useQuery
is added with a second param containing persisted: true
All the queries extracted are saved on disk in one file. The file is saved in the project root and looks like following
{
"d012f1a214f5e2117ec9d9aa16d5b8b5ef95f755252cb8488c3a742eebcc6db9": "query Add($x: Int!, $y: Int!) {\n add(x: $x, y: $y)\n }",
"3384eca8378f1d49f0ccd3d6bb2e394c0dd143c19bb1717138b206cd181c5dd7": "query Sub($x: Int!, $y: Int!) {\n sub(x: $x, y: $y)\n }",
"3f0587e447e0eee76801682a24ce1b44b68c5d298ed24a010ce259b0361b1ef2": "query Div($x: Int!, $y: Int!) {\n div(x: $x, y: $y)\n }"
}
Transforming all queries to their hashes tells graphql-hooks to make GET requests with query=<hash>&persisted=true
. Following is how a request looks like
http://localhost:5000/graphql?query=248eb276edb4f22aced0a2848c539810b55f79d89abc531b91145e76838f5602&persisted=true
Or with variables
http://localhost:5000/graphql?query=495ccd73abc8436544cfeedd65f24beee660d2c7be2c32536e3fbf911f935ddf&persisted=true&variables=\{"x":3,"y":6\}
FAQs
Unknown package
The npm package babel-plugin-extract-gql receives a total of 19 weekly downloads. As such, babel-plugin-extract-gql popularity was classified as not popular.
We found that babel-plugin-extract-gql demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.