Tag: graphql
-
Apollo extension config module.export = {} with Vite React
0 I created a react App with Vite, and I want to use Apollo extension to get Intellisense when building GraphQL queries. According to the extension docs, I created an apollo.config.js file at the root with this code : module.exports = { client: { service: { name: "my-graphql-app", url: "https://localhost:4000/graphql", }, }, }; But since…
-
Data engineer with GraphQL – Amazech Solutions – Dallas, TX
Amazech Solutions Dallas, TX $60 – $60 Part Time, Accepts corp to corp applications Skills GraphQL Job Description Hi This is Ravikumar from Amazech solutions Role Name: Data engineer with GraphQL Project Location (City/State):Dallas, TX Reporting Mode (On Site/Hybrid/Remote): On site Contract/Permanent: Contract Required skills/Experience:GraphQL Fundamentals: Strong grasp of GraphQL’s core concepts and specifications.Schema Design: Ability to create well-structured…
-
How to generate GraphQL query from protocol buffer generated code with gqlgen?
0 I have a protocol buffer file which includes an enumeration within a message. message Advisor { … enum AdvisorRole { // here be values } } This pb is the input to generate stubs using protoc-gen-gogo. ../gen/ProjectService.pb.go type Advisor_AdvisorRole int32 const ( // here be constant values ) The generated code is in time…
-
Golang Developer – Cigniti Technologies Inc – Plano, TX
Cigniti Technologies Inc Plano, TX $60 – $65 Accepts corp to corp applications, Contract: Independent, W2, 12 Month(s) Skills GoLang GraphQL PostgreSQL unit testing Multi – Threading Amazon Web Services gorilla Job Description Job Title: Golang Developer Duration: 12+ months contract Location: Plano, TX (DAY 1 ONSITE) In-person Interview is a must Job…
-
Records that I query in console from Amplify Datastore are different then the ones in Amplify Content
0 I’m new to AWS and React Native and I’m trying to create an aplication that will use AWS Datastore as database to store data. Right now i have this in my App.js import React, { useEffect } from "react" import {SafeAreaView, StyleSheet} from ‘react-native’ import Navigation from ‘./src/navigation’ import { Amplify, DataStore } from…
-
GitHub GraphQL API Filter on custom text field in Project V2
5 We are using GitHub Projects (Beta). I created a custom text field called oma-project. I want to use the API to filter on this field, e.g., oma-project: "P0001". This should return all issues with this value in the custom field. Looking at the Projects (beta) docs, I can list the first n issues but…
-
How to allow Urql (typescript) to accept Vue reactive variables for queries created with graphql-codegen
2 I’m building a Vue project with urql and graphql-codegen. Urql has the ability to take Vue reactive variables when using useQuery() to enable useQuery to be reactive and update when the variables do. But graphql-codegen is creating the type for the variables parameter to require scalars (ex. string) and so typescript is throwing an…
-
query mongodb with express and graphql
3 how do we use graph ql with mongo db here is my code with resolvers var resolvers = { test:()=>{ return getproducts() }, } const getproducts=()=>{ return new Promise((resolve,reject)=>{ Product.find({}).exec() .then(resp=>{ console.log("response is ",resp); let stringData = resp.toString() resolve(stringData); }).catch(err=>{ console.log(‘error is ‘,err); reject(err); }) }) } and schema is : test:String! i am…
-
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()…
-
How can I get data from a json via GraphQL and create dynamic pages in gatsby?
-2 its giving me error Cannot read properties of undefined (reading ‘edges’) when I deleted edges from const {compdata} = data.allJson.edges.node; its showing same error for node. What is right way to map this and I have to create dynamic pages using same json file.Please help me for this issue. src/data/data.json { "compdata": [{ "id":…