Tag: graphql
-
Looking for an example that connects Graphql with solace
0 Is there any code example that shows how we can use the Solace pubsub+ as a source and watch for events such as insertion or update at the database at the graphql server level and leverage graphql subscription service ? I came across example with rabbitmq to achieve this but I am looking for…
-
Full Stack Developer (Java, PHP, Typescript, React, GraphQL) – R Systems, Inc. – Remote
R Systems, Inc. Remote Depends on Experience Contract: W2, Corp-To-Corp, 12 Month(s) No Travel Required Skills Java Typescript React Spring Node GraphQL Job Description Position : Full Stack DeveloperLocation : RemoteDuration : Long Term Job Description:Full Stack Developer with expertise in Java, Typescript, React, Spring, Node, GraphQL or similar technologies. You will perform new design/enhancements…
-
GqlGen incorrectly generates directives that have colon character in value field
0 I use https://github.com/99designs/gqlgen for generating golang code from graphql schema. I need to be able to add gorm tags to the resulting golang types. For that, I declare a directive for custom go tags (in schema.directives.gql): directive @goTag( key: String! value: String ) on INPUT_FIELD_DEFINITION | FIELD_DEFINITION Then I use it the following way…
-
Load testing in Postman using GraphQL API
0 I want to perform load testing using Postman for GraphQL API. The requirement is that I need to confirm whether the application is able to withstand 200 concurrent requests. But in Postman Canary I am not able to specify 200 concurrent requests. Can any one help on this. graphql postman load-testing web-api-testing Share Improve…
-
updating record with typeORM transactions
0 I have quiz api in nestjs, i am using typeORM for saving data, I want to do following transaction: create quiz in quiz table with title and auto generated Id and empty array of questions for each question try to save question in data base with generated quiz_id and questions input save quiz and…
-
graphql import fragment
0 I have a graphql extension for vscode. It works fine, I got a highlight and param hints but can’t get fragments to work properly.. client: { service: { name: ‘test’, localSchemaFile: ‘./schema.json’, includes: [‘./graphql/**/*.graphql’], }, }, } This is my setup, and I import fragment with line… #import "…/file.graphql" and vscode says "unknown fragment"…
-
Configuration error while executing graphman
0 Can some one help me to solve the following error? I run the graph-node with docker-compose using the following command: docker compose up after the graph-node run successfully I execute the following command: docker compose exec -it graph-node graphman config check but I got the following error: Error: Configuration error Caused by: No such…
-
Why apollo client removes some properties (sets them to null) from a cached object spontaneously?
0 I’m using @apollo/client version 3.7.3 in a react.js, typescript application. After fetching a list of objects from the server, some values are removed from the cache spontaneously! So when the client gets the data from the server, it stores them in the cache to be used in the UI and the cache version is…
-
API Platform custom GraphQL output
0 I’m working on a GraphQL API using API Platform 2.7 and PHP8. I’m stuck since yersterday on a basic simple thing which is very annoying >< I want to create a custom Query which does not return my ApiRessource class (User) but another representation (MyFullPerimeterOutput). When I do it in REST API it works…