0.1.0 • Published 7 years ago

rollup-plugin-graphql v0.1.0

Weekly downloads
604
License
MIT
Repository
github
Last release
7 years ago

rollup-plugin-graphql

Convert GraphQL files to ES6 modules:

// import a GraphQL Document from a GraphQL file,
import schema from './schema.graphql';

Installation

npm install --save-dev rollup-plugin-graphql

Usage

import { rollup } from 'rollup';
import graphql from 'rollup-plugin-graphql';

rollup({
  entry: 'main.js',
  plugins: [
    graphql()
  ]
});

License

MIT