0 Hi guys I have a question, I can’t solve this: I have a shared object between multiple subgraphs. In one subgraph I need to add 2 more fields to this shared object. I tried using "extend" but it’s not working, rover is giving me error when composing. I tried this schema1.graphql type GenericResponse @shareable […]
0 I am currently using com.netflix.graphql.dgs:graphql-dgs-client version 4.9.15. This worked well with spring boot 2.6.6. On upgrading to spring boot 3.x specifically 3.1.3 I am seeing few failures (If required I can add more details about this). So I upgraded dgs client – com.netflix.graphql.dgs:graphql-dgs-client to 7.6.0. After upgrade, few things are working but other things […]
0 There’s some logic issue with my stack when I’m trying to login and logout. I’m currently storing a token using AsyncStorage, however, it seems to be a problem of going into another navigation stack and I’m not quite understanding it. I have verified that the token is showing up as intended and being wiped […]
0 I have nestjs quiz api which serves graphql queries and mutations, i have two resolvers (for questions and quizes). To the apollo server i need schema which i have from autoSchema but i dont know how to provide this resolvers without constructors Below my three files (main.ts / quiz.resolver.ts / question.resolver.ts) import { NestFactory […]
0 https://github.com/graphql/graphql-js/issues/3532#issuecomment-1125126566 serialize() can not return null, so I’m getting GRAPHQL error {"errors":[{"message":"Expected JsonType.serialize("null") to return non-nullable value, returned: null" error where JsonType is my customized scalar. tried to return undefined but it’s not working either. graphql graphql-js Share Follow asked 28 mins ago user22803426user22803426 1 New contributor user22803426 is a new contributor to this […]
0 I am facing an issue with gqlgen’s code generation in my Go project. I have a GraphQL schema and a Go interface where I’m trying to bind a type CourseProduct to a Go struct. However, I’m encountering an error during the code generation process. Here’s a snippet of my GraphQL schema: interface Product @goModel( […]
0 Here’s the issue: I have an ASP.NET Core 7 Web API listening on https://localhost:5248/sap/opu/odata/GIBSFI/ALERT_SRV, but when a request comes in, it needs to run the request to on https://localhost:5248/sap/opu/odata/GIBSFI/ALERT_SRV/graphql and return the results. Keep in mind this is a piece of middleware and I can not alter the URL the other app is submitting […]
0 I have apollo supergraph created with two subgraphs working perfectly. I have used Rover commands to join subgraphs with supergraph. Now I’m trying to add appsync as a subgraph to my supergraph. I have changed in the appsync schema as required apollo. Using rover command i have joined appsync as subgraph. I’m able to […]