Tag: java
-
GraphQL Engineer – Intraedge – Phoenix, AZ
Intraedge Phoenix, AZ Depends on Experience Accepts corp to corp applications, Contract: W2, Independent, 12 Month(s) Skills GraphQL JavaScript Java Job Description Job Title: GraphQL Engineer Location: Phoenix, AZ Duration: Long term contract Description:Our client is looking for GraphQL engineer who are very strong in JavaScript and have some exposure to Java. Regards, Surya Prakash…
-
generate avro schema from graphql mutation
0 I’m trying to migrate our endpoints from REST to graphQL. For now, we’re starting small with mutations only. we’re also changing from JSON to avro, which requires schema. I’m wondering if it’s possible to build avro schema dynamically from whatever graphql mutation structure sent by client, even if the payload is complex like array…
-
Java/API Engineer — REMOTE 100% — Contract on W2 – Siri Infosolutions Inc – Remote
Siri Infosolutions Inc Remote Contract: W2, 6+ Month(s) Skills Spring Boot Java Docker API Azure Kubernetes GraphQL Job Description Contract on W2 Java/API Engineer 6+ Months Contract REMOTE Must Haves: Java Spring Boot GraphQL ideal, microservices must SQL (data access and performant queries) Kubernetes, Docker API testing CI/CD Cloud experience https://www.dice.com/job-detail/ecc98545-85a0-462f-ac74-86fd5f404a0d
-
JavaFullstack Developer – React, Java, GraphQL – SVK Technology Solutions – Remote
SVK Technology Solutions Remote Depends on Experience Contract: W2, Independent, 24 Month(s) Skills React Java GraphQL Job Description Role : Java Fullstack Developer – React, Java, GraphQL Remote Long Term Tasks on hand:Build and deploy eCommerce solution for a retail enterpriseTroubleshoot exisiting code issues including bugs and performance issue coming from React frontend or backend including…
-
Java Enterprise Architect – Cognizioni LLC – Louisville, KY
Cognizioni LLC Louisville, KY Depends on Experience Contract: W2, Independent, 12 Month(s) 10% Travel Skills Java React NodeJS/NextJS MERN SQL GraphQL ecommerce Healthcare Job Description Role: Java Architect Must be from: eCommerce/Shopify experience, Onsite travel If needed (Louisville, KY) Skills Must have: Java, React, NodeJS/NextJS, React, MERN, SQL, GraphQL Must have prior experience in Healthcare…
-
Can’t autowire GraphQlTester
1 My current dependency set-up for demo api: dependencies { implementation ‘org.springframework.boot:spring-boot-starter-graphql:2.7.2-SNAPSHOT’ implementation ‘org.springframework.boot:spring-boot-starter-web’ testImplementation ‘org.springframework.boot:spring-boot-starter-test:2.7.2-SNAPSHOT’ testImplementation ‘org.springframework:spring-webflux’ testImplementation ‘org.springframework.graphql:spring-graphql-test:1.0.0’ compileOnly ‘org.projectlombok:lombok’ annotationProcessor ‘org.projectlombok:lombok’ } Test class: import com.example.demo.dao.ProfileDao; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.graphql.GraphQlTest; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.mock.mockito.MockBean; import org.springframework.graphql.test.tester.GraphQlTester; import static org.springframework.test.util.AssertionErrors.assertNotNull; @GraphQlTest //@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) class DemoApplicationTests { @Autowired GraphQlTester graphQlTester; @MockBean…
-
How to retry a Spring WebSocketGraphQlClient query
0 Using Spring Boot 3.2.4 with Spring WebFlux/GraphQL subscription via Websocket. Server A exposes a graphqlSubscription, and Server B consumes the subscription. They both use the same components (reactor/netty). Steps to Reproduce: // Client side, Initialize the webSocketGraphQlClient ReactorNettyWebSocketClient reactorNettyWebSocketClient = new ReactorNettyWebSocketClient(HttpClient.create(), build); WebSocketGraphQlClient.builder(serverUrl, reactorNettyWebSocketClient).build(); // Call sample webSocketGraphQlClient .document(query) .retrieveSubscription(path) .toEntity(XXXX.class) .retryWhen(Retry.fixedDelay(5, Duration.ofMinutes(1))).blockLast()…
-
Java developer with GraphQL – Fixity Technologies – Remote or Boston, MA
Fixity Technologies Remote or Boston, MA $60 – $70 Contract: Independent, W2, 6 Month(s) Skills java graphql Microservices Job Description Role – Java Lead/Architect Number of positions – 10 Location – Boston, MA, NJ, TX, NC, CA (Detailed address will be shared) Technology & Architecture Strong hands-on experience in developing and design microservice based…
-
How to respond with extensions using graphql-java?
7 My responses from GraphQL have to follow a particular format of { data:{} errors:[{}] extensions:{} } However, I am uncertain how to respond with extensions from my methods. I am using graphql-spring-boot which pulls in graphql-java, graphql-java-tools, and graphql-java-servlet. I understand that my results from a query/mutation method will be wrapped in the data…
-
How to skip validation rules in GraphQL Spring Boot application
0 I have a SpringBoot + GraphQL application. I am trying to upgrade to the latest version (graphql-spring-boot-starter 11.1.0 -> 13.0.1) which changes graphql-java from 16.2 -> 19.2. I have schema that looks like enum Type { TYPE1 TYPE2 } interface Generic { name: String type: Type } type Type1 extends Generic { name: String…