Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
babel-plugin-graphql-js-client-transform
Advanced tools
Babel plugin for transforming raw GraphQL queries into graphql-js-client query builder syntax
This Babel plugin will transform any tagged raw GraphQL query to Shopify/graphql-js-client query builder syntax.
$ yarn add babel-plugin-graphql-js-client-transform
.babelrc
{
"plugins": [
"graphql-js-client-transform"
]
}
By default, the plugin will search for the tag gql
. This value is configurable by passing in a tag
option to the plugin.
{
"plugins": [
["graphql-js-client-transform", {"tag": "customTag"}]
]
}
Simply tag your raw GraphQL queries and the plugin will transform them. An instance of Shopify/graphql-js-client must be supplied to the tag.
The following are example usages with the default variable name.
Convert a simple query.
client.send(gql(client)`
query {
shop {
name
}
}
`);
const _document = client.document(); // Creates a document to store the query
_document.addQuery((root) => {
root.add('shop', (shop) => {
shop.add('name');
});
});
client.send(_document);
The query can also be stored inside a variable instead of being sent directly.
const query = gql(client)`
query {
shop {
name
}
}
`;
client.send(query);
const _document = client.document(); // Creates a document to store the query
_document.addQuery((root) => {
root.add('shop', (shop) => {
shop.add('name');
});
});
const query = _document;
client.send(query);
MIT, see LICENSE.md for details.
FAQs
Babel plugin for transforming raw GraphQL queries into graphql-js-client query builder syntax
The npm package babel-plugin-graphql-js-client-transform receives a total of 30 weekly downloads. As such, babel-plugin-graphql-js-client-transform popularity was classified as not popular.
We found that babel-plugin-graphql-js-client-transform 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.