1.0.14 • Published 8 months ago

@graphitation/webpack-loader v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

A fork of GraphQL Tools Webpack Loader

A fork of @graphql-tools/webpack-loader with supermassive SDL encoding support

A webpack loader to preprocess GraphQL Documents (operations, fragments and SDL)

yarn add @graphitation/webpack-loader

How is it different from graphql-tag? It removes locations entirely, doesn't include sources (string content of imported files), no warnings about duplicated fragment names and supports more custom scenarios.

Options

  • noDescription (default: false) - removes descriptions
  • esModule (default: false) - uses import and export statements instead of CommonJS
  • supermassiveSDL (default: false) - encode SDL for execution with supermassive

Importing GraphQL files

To add support for importing .graphql/.gql files, see Webpack loading and preprocessing below.

Given a file MyQuery.graphql

query MyQuery {
  ...
}

If you have configured the webpack @graphitation/webpack-loader, you can import modules containing graphQL queries. The imported value will be the pre-built AST.

import MyQuery from "./query.graphql";

Preprocessing queries and fragments

Preprocessing GraphQL queries and fragments into ASTs at build time can greatly improve load times.

Webpack loading and preprocessing

Using the included @graphitation/webpack-loader it is possible to maintain query logic that is separate from the rest of your application logic. With the loader configured, imported graphQL files will be converted to AST during the webpack build process.

{
  loaders: [
    {
      test: /\.(graphql|gql)$/,
      exclude: /node_modules/,
      loader: '@graphitation/webpack-loader',
      options: {
        /* ... */
      }
    }
  ],
}
1.0.14

8 months ago

1.0.13

8 months ago

1.0.9

8 months ago

1.0.11

8 months ago

1.0.10

8 months ago

1.0.12

8 months ago

1.0.8

8 months ago

1.0.7

8 months ago

1.0.6

8 months ago

1.0.5

12 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.0

1 year ago