router icon indicating copy to clipboard operation
router copied to clipboard

Extensions field received from subgraph is not forwarded

Open consra opened this issue 1 year ago • 0 comments

Describe the bug

I have a subgraph which is returning the following:

{
  "extensions": {
    "request-id": "UUID"
  },
  data: {...},
}

but the router is returning only this part without including the extensions field

{
  data: {...},
}

To Reproduce

A subgraph should return in the extensions a new field. The router won't forward the extensions field received from the subgraph.

Expected behavior

The extension field from the subgraph is returned to the caller as expected.

Output

N\A

Desktop (please complete the following information):

  • router version 1.43.1

Additional context

N/A

consra avatar Oct 21 '24 08:10 consra