mercurius-gateway icon indicating copy to clipboard operation
mercurius-gateway copied to clipboard

Mercurius federation support plugin

Results 23 mercurius-gateway issues
Sort by recently updated
recently updated
newest added

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.6.0 to 3.8.1. Release notes Sourced from actions/setup-node's releases. v3.8.1 What's Changed In scope of this release, the filter was removed within the cache-save step by @​dmitry-shibanov...

dependencies
github_actions

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 13.3.0 to 14.0.1. Release notes Sourced from lint-staged's releases. v14.0.1 14.0.1 (2023-08-21) Bug Fixes fix reading config from stdin, introduced in v14.0.0 (#1317) (fc3bfea) v14.0.0 14.0.0 (2023-08-13)...

dependencies
javascript

Hello, This isn't a bug but more of a request. It seems that collectors aren't added to the context when the microservice sends an error. Is this intentional? Would it...

As per this code comment https://github.com/mercurius-js/mercurius-gateway/blob/main/lib/gateway/make-resolver.js#L652 it seems that it is not possible to define a Query that returns a Union type with one of the included object types defined...

Tests are _really_ flaky in this project. I think most of them are because of I/O, timers and reconnects. They should be investigated and fixed

Hi, I'm facing this issue: when a query uses an alias of a type declared in multiple nodes returns null. Schema Node 1: ``` extend type Query { list: PageInfo...

The difference between federation is that the gateway is no longer responsible to specify the service configurations. The entire composed graph is fetched by the gateway. This allows to dynamically...

enhancement

Hi, is it possible to provide (a small) part of the federated schema from the same server the gateway is running on? From the docs (and also apollos docs), it...

When starting a federated service with one non mandatory federated service down, the entire federated service doesn't start. This is the error I see: ```(node:21376) UnhandledPromiseRejectionWarning: Error: connect ECONNREFUSED 127.0.0.1:4004...

The gateway doesn't merge services schema correctly if `extend` is not used. The following schemas: ``` type Notification { id: ID! message: String } type Query { notifications: [Notification] }...