JSPM

@graphql-modules/epoxy

0.5.0-alpha.fe0beba4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3442
  • Score
    100M100P100Q102821F
  • License MIT

Package Exports

  • @graphql-modules/epoxy

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-modules/epoxy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

This module glue together parts of GraphQL schemas, based on their AST representation.

It makes it easier and simpler to merge GraphQL Types, enums, unions and interfaces.

# a1.graphql
type A {
    f1: String
}

# a2.graphql
type A {
    f2: String
}

Will result:

type A {
    f1: String
    f2: String
}