JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23497
  • Score
    100M100P100Q150098F

Pluck graphql-tag template literals

Package Exports

  • graphql-tag-pluck

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (graphql-tag-pluck) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

CircleCI

GraphQL Tag Pluck

graphql-tag-pluck will take JavaScript code as an input and will pluck all template literals provided to graphql-tag.

Input:

import gql from 'graphql-tag'

const fragment = gql`
  fragment Foo on FooType {
    id
  }
`

const doc = gql`
  query foo {
    foo {
      ...Foo
    }
  }

  ${fragment}
`

Output:

fragment Foo on FooType {
  id
}

query foo {
  foo {
    ...Foo
  }
}

Originally created because of https://graphql-code-generator.com/.

Usage

graphql-tag-pluck is installable via NPM (or Yarn):

$ npm install graphql-tag-pluck

Once installed you can pluck GraphQL template literals using one of the following methods:

import gqlPluck, { gqlPluckFromFile, gqlPluckFromCodeString } from 'graphql-tag-pluck'

gqlPluck.fromFile(filePath, { sync: false, ...mergeBabelConfig })
gqlPluck.fromFile.sync(filePath, mergeBabelConfig)

gqlPluck.fromCodeString(codeString, { sync: false, ...mergeBabelConfig })
gqlPluck.fromCodeString.sync(codeString, mergeBabelConfig)

supported file extensions are: .js, .jsx, .ts, .tsx, .graphqls, .graphql, .gql.

License

MIT