@teambit/graphql 1.0.547 → 1.0.549
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -373,6 +373,7 @@ class GraphqlMain {
|
|
373
373
|
static async provider([loggerFactory], config, [moduleSlot, graphQLServerSlot, pubSubSlot], context) {
|
374
374
|
const logger = loggerFactory.createLogger(_graphql2().GraphqlAspect.id);
|
375
375
|
const graphqlMain = new GraphqlMain(config, moduleSlot, context, logger, graphQLServerSlot, pubSubSlot);
|
376
|
+
graphqlMain.registerPubSub(new (_graphqlSubscriptions().PubSub)());
|
376
377
|
return graphqlMain;
|
377
378
|
}
|
378
379
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_schema","data","require","_graphqlDisableIntrospection","_interopRequireDefault","_core","_cli","_harmony","_logger","_express","_expressGraphql","_toolboxNetwork","_graphql","_graphqlSubscriptions","_http","_httpProxy","_subscriptionsTransportWs","_cors","_createRemoteSchemas","_graphql2","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","Verb","exports","GraphqlMain","constructor","config","moduleSlot","context","logger","graphQLServerSlot","pubSubSlot","Map","pubsub","pubSubSlots","values","PubSub","getSchema","aspectId","get","getSchemas","aspectIds","toArray","includes","map","schema","createServer","options","graphiql","disableIntrospection","localSchema","createRootModule","schemaSlot","remoteSchemas","createRemoteSchemas","schemas","concat","x","mergeSchemas","app","express","disableCors","use","cors","origin","callback","credentials","graphqlHTTP","request","res","params","customFormatErrorFn","err","error","assign","ERR_CODE","originalError","errors","name","HTTP_CODE","code","rootValue","validationRules","NoIntrospection","undefined","server","subscriptionsPort","subscriptionsPortRange","subscriptionServerPort","getPort","port","createSubscription","proxySubscription","registerServer","register","registerPubSub","Error","listen","serverPort","subServer","info","subscriptionsPath","range","from","to","Port","websocketServer","response","writeHead","end","debug","SubscriptionServer","execute","subscribe","onConnect","onWsConnect","path","proxServer","httpProxy","createProxyServer","on","req","socket","head","url","ws","target","host","modules","buildModules","GraphQLModule","imports","schemaSlots","extensionId","moduleDeps","getModuleDependencies","module","typeDefs","resolvers","schemaDirectives","session","verb","headers","READ","set","extension","extensions","deps","getDependencies","ids","dep","id","Array","entries","depId","provider","loggerFactory","createLogger","GraphqlAspect","graphqlMain","Slot","withType","MainRuntime","LoggerAspect","addRuntime"],"sources":["graphql.main.runtime.ts"],"sourcesContent":["import { mergeSchemas } from '@graphql-tools/schema';\nimport NoIntrospection from 'graphql-disable-introspection';\nimport { GraphQLModule } from '@graphql-modules/core';\nimport { MainRuntime } from '@teambit/cli';\nimport { Harmony, Slot, SlotRegistry } from '@teambit/harmony';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport express, { Express } from 'express';\nimport { graphqlHTTP } from 'express-graphql';\nimport { Port } from '@teambit/toolbox.network.get-port';\nimport { execute, subscribe } from 'graphql';\nimport { PubSubEngine, PubSub } from 'graphql-subscriptions';\nimport { createServer, Server } from 'http';\nimport httpProxy from 'http-proxy';\nimport { SubscriptionServer } from 'subscriptions-transport-ws';\nimport cors from 'cors';\nimport { GraphQLServer } from './graphql-server';\nimport { createRemoteSchemas } from './create-remote-schemas';\nimport { GraphqlAspect } from './graphql.aspect';\nimport { Schema } from './schema';\n\nexport enum Verb {\n WRITE = 'write',\n READ = 'read',\n}\n\nexport type GraphQLConfig = {\n port: number;\n subscriptionsPortRange: number[];\n subscriptionsPath: string;\n disableCors?: boolean;\n};\n\nexport type GraphQLServerSlot = SlotRegistry<GraphQLServer>;\n\nexport type SchemaSlot = SlotRegistry<Schema>;\n\nexport type PubSubSlot = SlotRegistry<PubSubEngine>;\n\nexport type GraphQLServerOptions = {\n schemaSlot?: SchemaSlot;\n app?: Express;\n graphiql?: boolean;\n disableIntrospection?: boolean;\n remoteSchemas?: GraphQLServer[];\n subscriptionsPortRange?: number[];\n onWsConnect?: Function;\n};\n\nexport class GraphqlMain {\n constructor(\n /**\n * extension config\n */\n readonly config: GraphQLConfig,\n\n /**\n * slot for registering graphql modules\n */\n private moduleSlot: SchemaSlot,\n\n /**\n * harmony context.\n */\n private context: Harmony,\n\n /**\n * logger extension.\n */\n readonly logger: Logger,\n\n private graphQLServerSlot: GraphQLServerSlot,\n\n /**\n * graphql pubsub. allows to emit events to clients.\n */\n private pubSubSlot: PubSubSlot\n ) {}\n\n get pubsub(): PubSubEngine {\n const pubSubSlots = this.pubSubSlot.values();\n if (pubSubSlots.length) return pubSubSlots[0];\n return new PubSub();\n }\n\n private modules = new Map<string, GraphQLModule>();\n\n /**\n * returns the schema for a specific aspect by its id.\n */\n getSchema(aspectId: string) {\n return this.moduleSlot.get(aspectId);\n }\n\n /**\n * get multiple schema by aspect ids.\n */\n getSchemas(aspectIds: string[]) {\n return this.moduleSlot\n .toArray()\n .filter(([aspectId]) => {\n return aspectIds.includes(aspectId);\n })\n .map(([, schema]) => {\n return schema;\n });\n }\n\n async createServer(options: GraphQLServerOptions) {\n const { graphiql = true, disableIntrospection } = options;\n const localSchema = this.createRootModule(options.schemaSlot);\n const remoteSchemas = await createRemoteSchemas(options.remoteSchemas || this.graphQLServerSlot.values());\n const schemas = [localSchema.schema].concat(remoteSchemas).filter((x) => x);\n const schema = mergeSchemas({\n schemas,\n });\n\n // TODO: @guy please consider to refactor to express extension.\n const app = options.app || express();\n if (!this.config.disableCors) {\n app.use(\n // @ts-ignore todo: it's not clear what's the issue.\n cors({\n origin(origin, callback) {\n callback(null, true);\n },\n credentials: true,\n })\n );\n }\n\n app.use(\n '/graphql',\n // eslint-disable-next-line @typescript-eslint/no-misused-promises\n graphqlHTTP((request, res, params) => ({\n customFormatErrorFn: (err) => {\n this.logger.error('graphql got an error during running the following query:', params);\n this.logger.error('graphql error ', err);\n return Object.assign(err, {\n // @ts-ignore\n ERR_CODE: err?.originalError?.errors?.[0].ERR_CODE || err.originalError?.constructor?.name,\n // @ts-ignore\n HTTP_CODE: err?.originalError?.errors?.[0].HTTP_CODE || err.originalError?.code,\n });\n },\n schema,\n rootValue: request,\n graphiql,\n validationRules: disableIntrospection ? [NoIntrospection] : undefined,\n }))\n );\n\n const server = createServer(app);\n const subscriptionsPort = options.subscriptionsPortRange || this.config.subscriptionsPortRange;\n const subscriptionServerPort = await this.getPort(subscriptionsPort);\n const { port } = await this.createSubscription(options, subscriptionServerPort);\n this.proxySubscription(server, port);\n\n return server;\n }\n\n /**\n * register a new graphql server.\n */\n registerServer(server: GraphQLServer) {\n this.graphQLServerSlot.register(server);\n return this;\n }\n\n /**\n * register a pubsub client\n */\n registerPubSub(pubsub: PubSubEngine) {\n const pubSubSlots = this.pubSubSlot.toArray();\n if (pubSubSlots.length) throw new Error('can not register more then one pubsub provider');\n this.pubSubSlot.register(pubsub);\n return this;\n }\n\n /**\n * start a graphql server.\n */\n async listen(port?: number, server?: Server, app?: Express) {\n const serverPort = port || this.config.port;\n const subServer = server || (await this.createServer({ app }));\n\n subServer.listen(serverPort, () => {\n this.logger.info(`API Server over HTTP is now running on http://localhost:${serverPort}`);\n this.logger.info(\n `API Server over web socket with subscriptions is now running on ws://localhost:${serverPort}/${this.config.subscriptionsPath}`\n );\n });\n }\n\n /**\n * register a new graphql module.\n */\n register(schema: Schema) {\n // const module = new GraphQLModule(schema);\n this.moduleSlot.register(schema);\n return this;\n }\n\n private async getPort(range: number[]) {\n const [from, to] = range;\n return Port.getPort(from, to);\n }\n\n /** create Subscription server with different port */\n\n private async createSubscription(options: GraphQLServerOptions, port: number) {\n // Create WebSocket listener server\n const websocketServer = createServer((request, response) => {\n response.writeHead(404);\n response.end();\n });\n\n // Bind it to port and start listening\n websocketServer.listen(port, () =>\n this.logger.debug(`Websocket Server is now running on http://localhost:${port}`)\n );\n\n const localSchema = this.createRootModule(options.schemaSlot);\n const remoteSchemas = await createRemoteSchemas(options.remoteSchemas || this.graphQLServerSlot.values());\n const schemas = [localSchema.schema].concat(remoteSchemas).filter((x) => x);\n const schema = mergeSchemas({\n schemas,\n });\n\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const subServer = new SubscriptionServer(\n {\n execute,\n subscribe,\n schema,\n onConnect: options.onWsConnect,\n },\n {\n server: websocketServer,\n path: this.config.subscriptionsPath,\n }\n );\n return { subServer, port };\n }\n /** proxy ws Subscription server to avoid conflict with different websocket connections */\n\n private proxySubscription(server: Server, port: number) {\n const proxServer = httpProxy.createProxyServer();\n const subscriptionsPath = this.config.subscriptionsPath;\n server.on('upgrade', function (req, socket, head) {\n if (req.url === subscriptionsPath) {\n proxServer.ws(req, socket, head, { target: { host: 'localhost', port } });\n }\n });\n }\n\n private createRootModule(schemaSlot?: SchemaSlot) {\n const modules = this.buildModules(schemaSlot);\n\n return new GraphQLModule({\n imports: modules,\n });\n }\n\n private buildModules(schemaSlot?: SchemaSlot) {\n const schemaSlots = schemaSlot ? schemaSlot.toArray() : this.moduleSlot.toArray();\n return schemaSlots.map(([extensionId, schema]) => {\n const moduleDeps = this.getModuleDependencies(extensionId);\n\n const module = new GraphQLModule({\n typeDefs: schema.typeDefs,\n resolvers: schema.resolvers,\n schemaDirectives: schema.schemaDirectives,\n imports: moduleDeps,\n context: (session) => {\n return {\n ...session,\n verb: session?.headers?.['x-verb'] || Verb.READ,\n };\n },\n });\n\n this.modules.set(extensionId, module);\n\n return module;\n });\n }\n\n private getModuleDependencies(extensionId: string): GraphQLModule[] {\n const extension = this.context.extensions.get(extensionId);\n if (!extension) throw new Error(`aspect ${extensionId} was not found`);\n const deps = this.context.getDependencies(extension);\n const ids = deps.map((dep) => dep.id);\n\n // @ts-ignore check :TODO why types are breaking here.\n return Array.from(this.modules.entries())\n .map(([depId, module]) => {\n const dep = ids.includes(depId);\n if (!dep) return undefined;\n return module;\n })\n .filter((module) => !!module);\n }\n\n static slots = [Slot.withType<Schema>(), Slot.withType<GraphQLServer>(), Slot.withType<PubSubSlot>()];\n\n static defaultConfig = {\n port: 4000,\n subscriptionsPortRange: [2000, 2100],\n disableCors: false,\n subscriptionsPath: '/subscriptions',\n };\n\n static runtime = MainRuntime;\n static dependencies = [LoggerAspect];\n\n static async provider(\n [loggerFactory]: [LoggerMain],\n config: GraphQLConfig,\n [moduleSlot, graphQLServerSlot, pubSubSlot]: [SchemaSlot, GraphQLServerSlot, PubSubSlot],\n context: Harmony\n ) {\n const logger = loggerFactory.createLogger(GraphqlAspect.id);\n const graphqlMain = new GraphqlMain(config, moduleSlot, context, logger, graphQLServerSlot, pubSubSlot);\n return graphqlMain;\n }\n}\n\nGraphqlAspect.addRuntime(GraphqlMain);\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"names":["_schema","data","require","_graphqlDisableIntrospection","_interopRequireDefault","_core","_cli","_harmony","_logger","_express","_expressGraphql","_toolboxNetwork","_graphql","_graphqlSubscriptions","_http","_httpProxy","_subscriptionsTransportWs","_cors","_createRemoteSchemas","_graphql2","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","Verb","exports","GraphqlMain","constructor","config","moduleSlot","context","logger","graphQLServerSlot","pubSubSlot","Map","pubsub","pubSubSlots","values","PubSub","getSchema","aspectId","get","getSchemas","aspectIds","toArray","includes","map","schema","createServer","options","graphiql","disableIntrospection","localSchema","createRootModule","schemaSlot","remoteSchemas","createRemoteSchemas","schemas","concat","x","mergeSchemas","app","express","disableCors","use","cors","origin","callback","credentials","graphqlHTTP","request","res","params","customFormatErrorFn","err","error","assign","ERR_CODE","originalError","errors","name","HTTP_CODE","code","rootValue","validationRules","NoIntrospection","undefined","server","subscriptionsPort","subscriptionsPortRange","subscriptionServerPort","getPort","port","createSubscription","proxySubscription","registerServer","register","registerPubSub","Error","listen","serverPort","subServer","info","subscriptionsPath","range","from","to","Port","websocketServer","response","writeHead","end","debug","SubscriptionServer","execute","subscribe","onConnect","onWsConnect","path","proxServer","httpProxy","createProxyServer","on","req","socket","head","url","ws","target","host","modules","buildModules","GraphQLModule","imports","schemaSlots","extensionId","moduleDeps","getModuleDependencies","module","typeDefs","resolvers","schemaDirectives","session","verb","headers","READ","set","extension","extensions","deps","getDependencies","ids","dep","id","Array","entries","depId","provider","loggerFactory","createLogger","GraphqlAspect","graphqlMain","Slot","withType","MainRuntime","LoggerAspect","addRuntime"],"sources":["graphql.main.runtime.ts"],"sourcesContent":["import { mergeSchemas } from '@graphql-tools/schema';\nimport NoIntrospection from 'graphql-disable-introspection';\nimport { GraphQLModule } from '@graphql-modules/core';\nimport { MainRuntime } from '@teambit/cli';\nimport { Harmony, Slot, SlotRegistry } from '@teambit/harmony';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport express, { Express } from 'express';\nimport { graphqlHTTP } from 'express-graphql';\nimport { Port } from '@teambit/toolbox.network.get-port';\nimport { execute, subscribe } from 'graphql';\nimport { PubSubEngine, PubSub } from 'graphql-subscriptions';\nimport { createServer, Server } from 'http';\nimport httpProxy from 'http-proxy';\nimport { SubscriptionServer } from 'subscriptions-transport-ws';\nimport cors from 'cors';\nimport { GraphQLServer } from './graphql-server';\nimport { createRemoteSchemas } from './create-remote-schemas';\nimport { GraphqlAspect } from './graphql.aspect';\nimport { Schema } from './schema';\n\nexport enum Verb {\n WRITE = 'write',\n READ = 'read',\n}\n\nexport type GraphQLConfig = {\n port: number;\n subscriptionsPortRange: number[];\n subscriptionsPath: string;\n disableCors?: boolean;\n};\n\nexport type GraphQLServerSlot = SlotRegistry<GraphQLServer>;\n\nexport type SchemaSlot = SlotRegistry<Schema>;\n\nexport type PubSubSlot = SlotRegistry<PubSubEngine>;\n\nexport type GraphQLServerOptions = {\n schemaSlot?: SchemaSlot;\n app?: Express;\n graphiql?: boolean;\n disableIntrospection?: boolean;\n remoteSchemas?: GraphQLServer[];\n subscriptionsPortRange?: number[];\n onWsConnect?: Function;\n};\n\nexport class GraphqlMain {\n constructor(\n /**\n * extension config\n */\n readonly config: GraphQLConfig,\n\n /**\n * slot for registering graphql modules\n */\n private moduleSlot: SchemaSlot,\n\n /**\n * harmony context.\n */\n private context: Harmony,\n\n /**\n * logger extension.\n */\n readonly logger: Logger,\n\n private graphQLServerSlot: GraphQLServerSlot,\n\n /**\n * graphql pubsub. allows to emit events to clients.\n */\n private pubSubSlot: PubSubSlot\n ) {}\n\n get pubsub(): PubSubEngine {\n const pubSubSlots = this.pubSubSlot.values();\n if (pubSubSlots.length) return pubSubSlots[0];\n return new PubSub();\n }\n\n private modules = new Map<string, GraphQLModule>();\n\n /**\n * returns the schema for a specific aspect by its id.\n */\n getSchema(aspectId: string) {\n return this.moduleSlot.get(aspectId);\n }\n\n /**\n * get multiple schema by aspect ids.\n */\n getSchemas(aspectIds: string[]) {\n return this.moduleSlot\n .toArray()\n .filter(([aspectId]) => {\n return aspectIds.includes(aspectId);\n })\n .map(([, schema]) => {\n return schema;\n });\n }\n\n async createServer(options: GraphQLServerOptions) {\n const { graphiql = true, disableIntrospection } = options;\n const localSchema = this.createRootModule(options.schemaSlot);\n const remoteSchemas = await createRemoteSchemas(options.remoteSchemas || this.graphQLServerSlot.values());\n const schemas = [localSchema.schema].concat(remoteSchemas).filter((x) => x);\n const schema = mergeSchemas({\n schemas,\n });\n\n // TODO: @guy please consider to refactor to express extension.\n const app = options.app || express();\n if (!this.config.disableCors) {\n app.use(\n // @ts-ignore todo: it's not clear what's the issue.\n cors({\n origin(origin, callback) {\n callback(null, true);\n },\n credentials: true,\n })\n );\n }\n\n app.use(\n '/graphql',\n // eslint-disable-next-line @typescript-eslint/no-misused-promises\n graphqlHTTP((request, res, params) => ({\n customFormatErrorFn: (err) => {\n this.logger.error('graphql got an error during running the following query:', params);\n this.logger.error('graphql error ', err);\n return Object.assign(err, {\n // @ts-ignore\n ERR_CODE: err?.originalError?.errors?.[0].ERR_CODE || err.originalError?.constructor?.name,\n // @ts-ignore\n HTTP_CODE: err?.originalError?.errors?.[0].HTTP_CODE || err.originalError?.code,\n });\n },\n schema,\n rootValue: request,\n graphiql,\n validationRules: disableIntrospection ? [NoIntrospection] : undefined,\n }))\n );\n\n const server = createServer(app);\n const subscriptionsPort = options.subscriptionsPortRange || this.config.subscriptionsPortRange;\n const subscriptionServerPort = await this.getPort(subscriptionsPort);\n const { port } = await this.createSubscription(options, subscriptionServerPort);\n this.proxySubscription(server, port);\n\n return server;\n }\n\n /**\n * register a new graphql server.\n */\n registerServer(server: GraphQLServer) {\n this.graphQLServerSlot.register(server);\n return this;\n }\n\n /**\n * register a pubsub client\n */\n registerPubSub(pubsub: PubSubEngine) {\n const pubSubSlots = this.pubSubSlot.toArray();\n if (pubSubSlots.length) throw new Error('can not register more then one pubsub provider');\n this.pubSubSlot.register(pubsub);\n return this;\n }\n\n /**\n * start a graphql server.\n */\n async listen(port?: number, server?: Server, app?: Express) {\n const serverPort = port || this.config.port;\n const subServer = server || (await this.createServer({ app }));\n\n subServer.listen(serverPort, () => {\n this.logger.info(`API Server over HTTP is now running on http://localhost:${serverPort}`);\n this.logger.info(\n `API Server over web socket with subscriptions is now running on ws://localhost:${serverPort}/${this.config.subscriptionsPath}`\n );\n });\n }\n\n /**\n * register a new graphql module.\n */\n register(schema: Schema) {\n // const module = new GraphQLModule(schema);\n this.moduleSlot.register(schema);\n return this;\n }\n\n private async getPort(range: number[]) {\n const [from, to] = range;\n return Port.getPort(from, to);\n }\n\n /** create Subscription server with different port */\n\n private async createSubscription(options: GraphQLServerOptions, port: number) {\n // Create WebSocket listener server\n const websocketServer = createServer((request, response) => {\n response.writeHead(404);\n response.end();\n });\n\n // Bind it to port and start listening\n websocketServer.listen(port, () =>\n this.logger.debug(`Websocket Server is now running on http://localhost:${port}`)\n );\n\n const localSchema = this.createRootModule(options.schemaSlot);\n const remoteSchemas = await createRemoteSchemas(options.remoteSchemas || this.graphQLServerSlot.values());\n const schemas = [localSchema.schema].concat(remoteSchemas).filter((x) => x);\n const schema = mergeSchemas({\n schemas,\n });\n\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const subServer = new SubscriptionServer(\n {\n execute,\n subscribe,\n schema,\n onConnect: options.onWsConnect,\n },\n {\n server: websocketServer,\n path: this.config.subscriptionsPath,\n }\n );\n return { subServer, port };\n }\n /** proxy ws Subscription server to avoid conflict with different websocket connections */\n\n private proxySubscription(server: Server, port: number) {\n const proxServer = httpProxy.createProxyServer();\n const subscriptionsPath = this.config.subscriptionsPath;\n server.on('upgrade', function (req, socket, head) {\n if (req.url === subscriptionsPath) {\n proxServer.ws(req, socket, head, { target: { host: 'localhost', port } });\n }\n });\n }\n\n private createRootModule(schemaSlot?: SchemaSlot) {\n const modules = this.buildModules(schemaSlot);\n\n return new GraphQLModule({\n imports: modules,\n });\n }\n\n private buildModules(schemaSlot?: SchemaSlot) {\n const schemaSlots = schemaSlot ? schemaSlot.toArray() : this.moduleSlot.toArray();\n return schemaSlots.map(([extensionId, schema]) => {\n const moduleDeps = this.getModuleDependencies(extensionId);\n\n const module = new GraphQLModule({\n typeDefs: schema.typeDefs,\n resolvers: schema.resolvers,\n schemaDirectives: schema.schemaDirectives,\n imports: moduleDeps,\n context: (session) => {\n return {\n ...session,\n verb: session?.headers?.['x-verb'] || Verb.READ,\n };\n },\n });\n\n this.modules.set(extensionId, module);\n\n return module;\n });\n }\n\n private getModuleDependencies(extensionId: string): GraphQLModule[] {\n const extension = this.context.extensions.get(extensionId);\n if (!extension) throw new Error(`aspect ${extensionId} was not found`);\n const deps = this.context.getDependencies(extension);\n const ids = deps.map((dep) => dep.id);\n\n // @ts-ignore check :TODO why types are breaking here.\n return Array.from(this.modules.entries())\n .map(([depId, module]) => {\n const dep = ids.includes(depId);\n if (!dep) return undefined;\n return module;\n })\n .filter((module) => !!module);\n }\n\n static slots = [Slot.withType<Schema>(), Slot.withType<GraphQLServer>(), Slot.withType<PubSubSlot>()];\n\n static defaultConfig = {\n port: 4000,\n subscriptionsPortRange: [2000, 2100],\n disableCors: false,\n subscriptionsPath: '/subscriptions',\n };\n\n static runtime = MainRuntime;\n static dependencies = [LoggerAspect];\n\n static async provider(\n [loggerFactory]: [LoggerMain],\n config: GraphQLConfig,\n [moduleSlot, graphQLServerSlot, pubSubSlot]: [SchemaSlot, GraphQLServerSlot, PubSubSlot],\n context: Harmony\n ) {\n const logger = loggerFactory.createLogger(GraphqlAspect.id);\n const graphqlMain = new GraphqlMain(config, moduleSlot, context, logger, graphQLServerSlot, pubSubSlot);\n graphqlMain.registerPubSub(new PubSub());\n return graphqlMain;\n }\n}\n\nGraphqlAspect.addRuntime(GraphqlMain);\n"],"mappings":"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","ignoreList":[]}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_graphql@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_graphql@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_graphql@1.0.549/dist/graphql.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_graphql@1.0.549/dist/graphql.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/graphql",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.549",
|
4
4
|
"homepage": "https://bit.cloud/teambit/harmony/graphql",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.harmony",
|
8
8
|
"name": "graphql",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.549"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"@graphql-modules/core": "0.7.17",
|
@@ -32,10 +32,10 @@
|
|
32
32
|
"bufferutil": "4.0.3",
|
33
33
|
"@teambit/harmony": "0.4.6",
|
34
34
|
"@teambit/ui-foundation.ui.is-browser": "0.0.500",
|
35
|
-
"@teambit/cli": "0.0.
|
36
|
-
"@teambit/logger": "0.0.
|
35
|
+
"@teambit/cli": "0.0.1126",
|
36
|
+
"@teambit/logger": "0.0.1219",
|
37
37
|
"@teambit/toolbox.network.get-port": "1.0.10",
|
38
|
-
"@teambit/ui": "1.0.
|
38
|
+
"@teambit/ui": "1.0.549"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
41
41
|
"@types/cors": "2.8.10",
|