Hi there, I have reviewed your domain in MOZ and have observed that you may benefit from an increase in authority. Our solution guarantees you a high-quality domain authority score within a period of three months. This will increase your organic visibility and strengthen your website authority, thus making it stronger against Google updates. Check […]
0 Alright I’ve been completely stuck on this and need huge help quick. What I’m trying to do: My domain: https://example.com (just a placeholder) NextJS App https://localhost:3000 (custom server with express) My GraphQL API https://localhost:3000/api/graphql (custom server with express) The NextJS App and the GraphQL API is on the same NodeJS server. The routes actually […]
0 I would like to use dynamic cache. I was able to set the cache maxAge into the query resolver, but since the resolver can return both an unsuccessful and a successful response I would like to only cache the successful one. In order to do this I would like to set up the info […]
0 I have a very strange behaviour and I need your help. I retrieve a list of content from a GraphQl API that i attach you: client.query({query: PAGES_LIST}).then(res => console.log(res.data.pages) The problem is that the response from the network is that: [ { "id": "ddf", "title": "DDF", "type": "HOME", "draft": false, "newtonId": "64edfc8f3508bb20a9dbef19", "creationDate": "2023-08-29 […]
0 I am using NestJS server with microservices and Apollo Router. I want to add "@authenticated" directive to my resolvers so I can omit authentication on requests to routes that do not require it. When using @Directive("@authenticated"), I get an error saying that I either have to use "@federation__authenticated" (which throws error saying it doesn’t […]
0 I’m using Facebook’s C++ library GraphQLParser to parse GraphQL queries. If a pass the library a query with an extremely large number of nested selection sets – it crashes due to stack overflow. Query for example: query X { name { name { name { … } Is there a way to configure the […]
6 Below code snippet demonstrates some real issue I faced recently in my program: #include<vector> class A; void f( const std::vector<A> & = {} ); There is an incomplete class A, and a function declaration taking a vector of A‘s with empty default value. And the function is not even called anywhere. It works fine […]
1 I’m using Spring Cloud Gateway with a routing configuration like this: spring: cloud: gateway: routes: – id: http uri: https://kubernetes-ingres-controller In other words, I’m sending all paths onwards to somewhere else, which happens to be a K8s ingress controller. Spring adds some headers and handles the translation of session cookies into bearer tokens. I’m […]
0 I have this graphql query: export const LOAD_PLAYERS = gql` query GetPlayers { players { id firstname lastname shortname sex picture { url } country { code picture { url } } stats { rank age weight height points } } } `; I’m using it in this custom hook and it works just […]
0 i have gateway with ocelot and Hot Chocolate grapqhl after my initialisation app.UseHttpsRedirection(); app.MapGet("/", () => "Ok"); app.MapGraphQL(); app.UseAuthorization(); app.MapControllers(); app.UseSwaggerForOcelotUI(options => { options.PathToSwaggerGenerator = "/swagger/docs"; options.ReConfigureUpstreamSwaggerJson = AlterUpstream.AlterUpstreamSwaggerJson; options.DefaultModelsExpandDepth(-1); }) .UseOcelot() .Wait(); app.Run(); Graphql UI stop and /graphql stop working Can you help me ? asp.net graphql ocelot Share Improve this question Follow […]