Tag: graphql
-
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
-
Data Modeler with API – Hybrid – ARK Infotech Spectrum – Remote or Atlanta, GA
ARK Infotech Spectrum Remote or Atlanta, GA Depends on Experience Contract: W2, 1 Year(s) Skills REST API GraphQL taxonomy ontology Job Description POSITION GENERAL DUTIES AND TASKS : Following are some of the responsibilities an enterprise data modeler is expected to assume. At high level, it’s not the traditional relational data modeler person, it’s someone…
-
Enterprise Software Arch and Eng Associate – Amiseq Inc. – Tampa, FL
Amiseq Inc. Tampa, FL Depends on Experience Contract: W2, Independent, 12 Month(s) Work from home Skills Boot PLSQL GraphQL J2E E RDBMS XML Tomcat Job Description Description: Must have strong hands-on development experience with Java (8.0/11.0), J2EE and Spring.• Must have hands-on development experience with UI technologies such as HTML, CSS, jQuery, java scripting, ReactJS•…
-
Implementing GraphQL stitch with RabbitMQ in NestJS
0 I’m working on a NestJS task where I must use GraphQL stitching with RabbitMQ. I actually have explored various options, however am having trouble finding clean and exact commands on a way to obtain this integration. problem: I want to set up a microservices architecture using GraphQL stitching, and I’ve chosen RabbitMQ as the…
-
Senior Consultant (GraphQL-Kafka-subscriptions) – Cohesive Technologies LLC – Plano, TX
Cohesive Technologies LLC Plano, TX Accepts corp to corp applications, Contract: IndependentW2, 12 Month(s) Skills aws microservices kafka APIs GraphQL Job Description Cohesive Technologies is a global IT Services & Solutions company providing IT Staffing Services and Application Development Services necessary for technology leaders to deliver business value. We help our people and clients succeed…
-
Senior Consultant GraphQL-Kafka-subscriptions – Sunwell America Inc – Plano, TX
Sunwell America Inc Plano, TX Depends on Experience Contract: Independent, 12 Month(s) No Travel Required Skills GraphQL Kafka software architecture AWS Job Description Senior Consultant( GraphQL-Kafka-subscriptions) Plano, TX (On-Site) 12 Months Contract Must Have 12+ years of progressive engineering experience, building and scaling cloud-based SaaS products with a deep desire to stay hands-on. Experience…
-
Docker Containers failing to connect to each other – connection refused
1 I have a simple application orchestrated by Docker Compose. It consists of a simple frontend (built using NextJS), a GraphQL API (built with NestJS), and a microservice (built with NestJS). The architecture is as follows: The frontend speaks directly to the GraphQL service. The GraphQL service communicates to the microservice via a NATS server…
-
condensing an async method into a one liner
0 I’m working on some async code for subscriptions / web sockets and have the following code after some effort. This in itself is functional. @type(name="Subscription") class ContactsSubscription: @subscription async def company(self, info: Info, pk: str) -> AsyncGenerator[CompanyType, None]: async for i in model_subscribe_publisher(info=info, pk=pk, model=Company): yield i The part where I’m struggling is discovering…
-
GraphQlTester or GraphQLTestTemplate is not getting injected With SpringBoot 3.x
0 SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK) @AutoConfigureGraphQlTester class SpaceControllerTest { @Autowired private GraphQlTester graphQlTester; // below the test cases` Throwing exception : Unsatisfied dependency expressed through field ‘graphQlTester’: No qualifying bean of type ‘org.springframework.graphql.test.tester.GraphQlTester’ available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} I tried working on various options but not getting…
-
Wikijs Graphql: How to create multiple users at a time?
0 I am trying to create multiple users at a time from a CSV file. Right now I am only able to create one user at a time using the following mutation: mutation { users { create ( email: "" name: "" passwordRaw:: "" providerKey: "" groups: [1] mustChangePassword: true sendWelcomeEmail: false ) { responseResult…