Tag: javascript
-
React Developer – Synkriom – Columbus, OH
Synkriom Columbus, OH $60 – $70 Contract: W2, Independent, 12 Month(s) 100% Travel Skills React Agile JavaScript HTML CSS TypeScript GraphQL Job Description As a Developer drive the technical team in an Agile development process. Has strong understanding of the overall software delivery lifecycle and activities. Code, design, and testing in a heterogeneous technology environment…
-
Front End Development Lead – IT Minds LLC – Remote
IT Minds LLC Remote Depends on Experience Accepts corp to corp applications, Contract: Independent, W2, 12 Month(s) Skills Front End Development GraphQL Javascript Reactjs Nodejs Nestjs Nextjs Job Description Position: Development Lead Duration: Long Term Location: Remote Deliver Innovative technology solutions to complex problems with client-centric approach Improve current capabilities, process and resources Innovation in…
-
Full Stack Developer (GraphQL)- Charlotte, NC/Detroit, MI – Digital Technology Solutions – Charlotte, NC
Digital Technology Solutions Charlotte, NC DOE Contract: W2, Independent, 12 Month(s) No Travel Required Skills JavaScript GraphQL TypeScript Node . js AWS AWS serverless Job Description DTS is looking for Full Stack Developer for our direct client Position in Charlotte, NC Job Description Seeking an innovative and passionate Software Engineer to build key capabilities…
-
React with A11y(accessibility) Developer – eTeam, Inc. – Irving, TX
eTeam, Inc. Irving, TX Depends on Experience Contract: W2, Independent Work from home Skills GraphQL Javascript Node . js React js Redux Unit tests Webpack front – end development accessibility Job Description Job Title: React/Front-end Developer Location: Irving TX, OR Atlanta GA, OR Minneapolis (Hybrid) Mode: Contract – C2C / W2 Perform front-end development using…
-
How do I define a typeDefs in a Schema for the following Response
0 I am Trying to Define a typeDefs for the following response in graphql CompactRes={ "Compact": [ [ 0, 1, 2, 3 ], [ 4, 5, 6, [ 7, 2.567 ] ]]} Here is my Schema const typeDefs = gql` type Compact{ compact:[[Float]] } type Query { response(count: ID!): Compact } `; const resolvers =…
-
How can I parse a custom scalar in Apollo Client?
0 How can I return a Decimal type from my backend GraphQL server and then parse it on my frontend client? I have a backend that returns a product with a price. The price is a custom scalar of Decimal type. The schema is like so: scalar Decimal type Product { id: ID! price: Decimal…
-
How to implement error handling globally for URQL GraphQL mutation?
0 My stack is: react v17.0.2 graphql v16.8.0 graphql-ws v5.14.0 urql v4.0.5 I use Hasura Actions to connect to REST API and I need to implement global error handling for all mutations. For example I have useAuthentication hook that returns a signOut promise: import { useMutation } from ‘urql’; export const useAuthentication = () =>…
-
What is [Symbol(kHeaders)] and how do I parse it as headers
2 I am having trouble parsing the header retrieved from graphql’s context, what I would like to do is to basically forward the headers from the request into the response My gateway: GraphQLModule.forRootAsync<ApolloGatewayDriverConfig>({ driver: ApolloGatewayDriver, inject: [ConfigService], useFactory: async(configService: ConfigService) => ({ server: { introspection: true, playground: true, cache: ‘bounded’ }, gateway: { buildService: (url)…