$ cnpm install @graphql-modules/epoxy
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
}
Copyright 2013 - present © cnpmjs.org | Home |