graphql-mesh
graphql-mesh copied to clipboard
Propagate graphql extensions
trafficstars
I use graphql-mesh to filter schema of my graphql server.
I'd like to propagate extensions from original response through mesh.
For example I send transaction-id with every response.
Original response
{
"data": {
"hello": "world"
},
"extensions": {
"transactionId": "c2338f77-df6d-41a5-8831-e3092cd7c521"
}
}
After graphql-mesh:
{
"data": {"hello": "world"}
}
Currently it is not possible.
Any plans to implement? Any suggestions how patch should look like?
@ardatan any plan for this??
No plans for this before v1.
Thanks, Can I achieve this by creating a custom plugin or it should be added to core level of @graphql-mesh/graphql handler package?