graphql-import-node-as-string

0.0.4 • Public • Published

GraphQL Import Node

This extension makes your NodeJS application able to import graphql files. It uses require.extensions to allow you to import/require from .graphql files in NodeJS environment. The imported content will be a GraphQL string as is.

This is fork of graphql-import-node, only difference is - it not use graphql library for parsing string, but returns string as is.

npm i graphql-import-node-as-string

After that, you need to load this library before anything else.

Usage with Node (JavaScript)

Make sure to run your NodeJS process with -r flag:

node -r graphql-import-node/register index.js

Or, you can require it manually in your index file:

// CommonJS
require('graphql-import-node-as-string/register');
// ES2016
import 'graphql-import-node-as-string';

Now you should be able to do:

const schema = require('./schema.graphql');

Usage with Jest

If you are running a test environment like Jest, you should add the following configuration to your Jest config:

{
  "transform": {
    "^.+\\.graphql$": "graphql-import-node-as-string/jest"
  }
}

Package Sidebar

Install

npm i graphql-import-node-as-string

Weekly Downloads

32

Version

0.0.4

License

MIT

Unpacked Size

3.28 kB

Total Files

9

Last publish

Collaborators

  • yarsky