Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@graphql-tools/webpack-loader
Advanced tools
A set of utils for faster development of GraphQL tools
A webpack loader to preprocess GraphQL Documents (operations, fragments and SDL)
Slightly different fork of graphql-tag/loader.
yarn add @graphql-tools/webpack-loader
How is it different from graphql-tag
? It removes locations entirely, doesn't include sources (string content of imported files), no warnings about duplicated fragment names and supports more custom scenarios.
To add support for importing .graphql
/.gql
files, see Webpack loading and preprocessing below.
Given a file MyQuery.graphql
query MyQuery {
...
}
If you have configured the webpack @graphql-tools/webpack-loader, you can import modules containing graphQL queries. The imported value will be the pre-built AST.
import MyQuery from './query.graphql'
Preprocessing GraphQL queries and fragments into ASTs at build time can greatly improve load times.
Using the included @graphql-tools/webpack-loader
it is possible to maintain query logic that is separate from the rest of your application logic. With the loader configured, imported graphQL files will be converted to AST during the webpack build process.
{
loaders: [
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: '@graphql-tools/webpack-loader',
options: {
/* ... */
}
}
],
}
FAQs
A set of utils for faster development of GraphQL tools
The npm package @graphql-tools/webpack-loader receives a total of 36,956 weekly downloads. As such, @graphql-tools/webpack-loader popularity was classified as popular.
We found that @graphql-tools/webpack-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.