graphql-min
v1.0.1
Published
Converts your graphql query to minified one via babel plugin
Readme
GraphQL minifier through tagged template
Converts your graphql query to minified one via babel plugin
in .babelrc, add
{
"plugins": ["graphql-min/babel"]
}import gql from 'graphql-min';
const query = gql`{
foo {
bar {
baz
}
}
}`becomes
const query = `{foo{bar{baz}}}`