1.0.0 • Published 5 years ago

@kocal/rollup-plugin-graphql v1.0.0

Weekly downloads
2,576
License
MIT
Repository
github
Last release
5 years ago

rollup-plugin-graphql

Convert GraphQL files to ES6 modules:

:warn: This package is a fork of the initial rollup-plugin-graphql. This fork is compatible with Rollup ^1.0 - thanks to @bennypowers (https://github.com/kamilkisiela/rollup-plugin-graphql/pull/7).

And myself, I've just published the module on NPM to make the fork more easier to install on a project.

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

// or import named Query/Mutation
import { FooQuery, FooMutation } from './schema.graphql';

Installation

npm install --save-dev @kocal/rollup-plugin-graphql

Usage

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

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

License

MIT