I am using the graphql-compose
library. I am using the type composer to create classes and add it to schema composer and it builds the schema.
How to add (merge) another schema to schema composer? Or How to create an executable schema and add (merge) schema built by schema composer.
The schema what I need to add is from apollo-upload-server
. Its docs declare schema like this:
const schema = makeExecutableSchema({
typeDefs: `scalar Upload`,
resolvers: { Upload: GraphQLUpload }
})