Sets up the graphql-tag/loader for webpack blocks.
npm install webpack-blocks-graphqlimporting of .graphql and .gql files in your JS application.
npm:
npm install --save-dev webpack-blocks-graphql
`
Then include in your webpack.config.js file:
`js
var webpack = require("@webpack-blocks/webpack2");
var graphql = require("webpack-blocks-graphql");
module.exports = webpack.config([
// ...
graphql(),
// ...
]);
``