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
}