16 questions
0
votes
0
answers
26
views
Graphql Mesh - How to store to DB rather physical location
By using Graphql Mesh I am able to convert soap, rest, rpc into graphql queries/schemas but it is storing everything in yml file and schema files.
If I have 500 sources, saving all sources into yml ...
0
votes
1
answer
82
views
Unable to get soap response after Graphql mesh upgrade
I have upgraded graphql-mesh/soap versions and other dependencies.
And my soap wsdl is using soap1.1 features.
After update I am unable to connect to soap client as it is returning 500 error due to ...
0
votes
1
answer
49
views
Graphql-mesh How to forward query param on graphql source?
I want to forward the query string on graphql source. I have a _pid query param that is not part of the graphql query.
1
vote
0
answers
50
views
Issues with Cookies Not Appearing in Browser for GraphQL Requests Across Microservices
Issue with Cookies in Local Development
Hi everyone,
I have two microservices: Auth (using GraphQL Yoga) and Gateway (using GraphQL Mesh). The services are deployed locally on ports 3000 and 4000 ...
0
votes
0
answers
29
views
How do I change the case with mesh transforms in all the extended types?
I am struggling to use naming conventions in mesh transform
transforms:
- namingConvention:
fieldNames: snakeCase
to change all keys to be snake_case. Though they do change the cases in the ...
2
votes
0
answers
161
views
DRF and GraphQL Mesh Integration using OpenAPI method?
I am relatively new to graphql-mesh and trying to understand. I have connected my graphql version of DRF to mesh and it worked but when I am trying to connect it using OpenAPI I get errors like
...
1
vote
0
answers
173
views
Why does useGenericAuth not change the context as expected?
Cutting straight to the case: backend project using typescript and graphql.
We have a package /graphql_gateway where all requests are sent to. This gateway uses graphQL mesh to stitch the schemas of ...
1
vote
0
answers
200
views
How to pass token from Postman to Graphql Mesh
I am trying to build a unified gateway for my over 50 different graphql endpoints that I want to have them accessed over one gateway and I have choosen to use graphqlmesh. I am bit lost, I can hard ...
1
vote
0
answers
141
views
GraphQL Mesh sharing types across handler or different sources
I am working on a project with GraphQL Mesh.
With one of the use cases I have one openapi endpoint. In there, I need to handcraft a resolver that is using types from that openapi schema definations. I ...
0
votes
1
answer
583
views
Unable to update @graphql-mesh
I have update the @graphql-mesh with to latest version and below are the packages
"@graphql-mesh/config": "^6.1.0",
"@graphql-mesh/graphql": "^0.29.12",
&...
1
vote
1
answer
364
views
graphql mesh execute query programatically
I am using the graphql-mesh as gateway to connect and get data from some internal resources. I want to use this mesh query programatically so from other rest handler I can execute any query from my ...
2
votes
0
answers
353
views
Unable to upgrade the @graphql-mesh on latest version, sdkRequesterFactory is causing some issue
I am trying to update the @graphql-mesh with the latest version and the following is the related package needs to update
"@graphql-mesh/cache-file": "^0.8.23",
"@graphql-mesh/...
3
votes
0
answers
371
views
Graphql-Mesh how to do Authentication with backend services?
I am wondering how do we authenticate graphql-mesh server with backend services that uses oAuth or SAML based authentication. There are examples where I saw use of API-KEY, but how was this API-KEY ...
0
votes
0
answers
109
views
An NPM package extends an interface in the global scope. How to override this type definition?
I use the graphql-mesh package in my project. This library has the following type definition:
declare global {
interface ObjectConstructor {
keys<T>(obj: T): Array<keyof T>;
}
}
...
4
votes
3
answers
4k
views
What is the difference between GraphQL-Mesh and Apollo-Federation?
What is the difference between GraphQL-Mesh and Apollo-Federation?
I see that mesh support federation, which is kind of confusion?
Is it just two different ways to achieve a unified schema?
Why would ...
0
votes
1
answer
1k
views
graphql-mesh: why odata handler throws error when serving my local endpoint
I am trying to follow the example in the GraphQL-Mesh and replace the endpoint with my own to see how it works. Default github example works however when I try to server the mesh for my example, it ...