Convert GraphQL files to ES6 modules:
// import a GraphQL Document from a GraphQL file,
import schema from './schema.graphql';
npm install --save-dev rollup-plugin-graphql
import { rollup } from 'rollup';
import graphql from 'rollup-plugin-graphql';
rollup({
entry: 'main.js',
plugins: [
graphql()
]
});
MIT