Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@graphql-tools/graphql-tag-pluck
Advanced tools
The @graphql-tools/graphql-tag-pluck package is designed to extract GraphQL query strings from JavaScript and TypeScript files. It can pluck GraphQL queries from template literals in your code, which is useful when you want to separate GraphQL operations from the rest of your JavaScript codebase for preprocessing or compilation purposes.
Plucking GraphQL queries from JavaScript/TypeScript files
This feature allows you to extract GraphQL queries from a specified JavaScript or TypeScript file. The `gqlPluckFromFile` function reads the file and returns a promise that resolves with the extracted queries.
const { gqlPluckFromFile } = require('@graphql-tools/graphql-tag-pluck');
async function getQueries() {
const filePath = 'path/to/your/file.js';
const gqlQueries = await gqlPluckFromFile(filePath);
console.log(gqlQueries);
}
getQueries();
Plucking GraphQL queries from a string
This feature allows you to extract GraphQL queries from a string containing code. The `gqlPluckFromCodeString` function takes a string as input and returns a promise that resolves with the extracted queries.
const { gqlPluckFromCodeString } = require('@graphql-tools/graphql-tag-pluck');
async function getQueriesFromString(codeString) {
const gqlQueries = await gqlPluckFromCodeString(codeString);
console.log(gqlQueries);
}
const code = "const query = gql`{ user { id } }`";
getQueriesFromString(code);
The graphql-tag package is commonly used to parse GraphQL query strings into a standard GraphQL AST. It is similar to @graphql-tools/graphql-tag-pluck in that it deals with GraphQL queries in JavaScript files, but it does not provide the functionality to extract queries from arbitrary code locations.
This package provides a Babel plugin that compiles GraphQL queries using the graphql-tag library at build time. It is similar to @graphql-tools/graphql-tag-pluck in that it processes GraphQL queries in JavaScript files, but it operates as part of the Babel compilation process rather than as a standalone tool for extracting queries.
Check API Reference for more information about this package; https://www.graphql-tools.com/docs/api/modules/graphql_tag_pluck_src
You can also learn more about GraphQL Tag Pluck in this chapter; https://www.graphql-tools.com/docs/graphql-tag-pluck
FAQs
Pluck graphql-tag template literals
The npm package @graphql-tools/graphql-tag-pluck receives a total of 3,328,261 weekly downloads. As such, @graphql-tools/graphql-tag-pluck popularity was classified as popular.
We found that @graphql-tools/graphql-tag-pluck demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.