nabsofken

Results 9 comments of nabsofken

@nilsm the serverless-plugin-typescript plugin doesn't work well when you have external dependencies i.e. A shared folder. The files or node modules from the shared folder do not get packaged within...

@hakimio I am getting the same error. Did you manage to get it resolved?

```//gateway.ts import fastify from 'fastify'; import mercurius from 'mercurius'; import fastifyCors from 'fastify-cors'; const init = (opts = {logger:{level:"error"}}) => { const gateway = fastify(opts); gateway.register(fastifyCors); gateway.register(mercurius, { graphiql: "playground",...

And the federated service is as follows: ```//invoice.ts import fastify from 'fastify'; import mercurius from 'mercurius'; import fastifyCors from 'fastify-cors'; import { typeDefs } from './schema'; import { resolvers }...

@mcollina the docs for the mandatory flag mentioned that one service is necessary does that mean I need at least 1 mandatory service?

@asciidisco here is the sample code https://github.com/pashamo/federation-test To reproduce the issue run `npm run serviceA` only then run the `npm run gateway`. The gateway throws an error even though serviceB...

@asciidisco did you get a chance to look into the test case?