Tag: graphql
-
GraphQL HotChocolate 13: Adding PaginationAmountType to be backwards compatible for old clients
0 I’m migrating a quite old GraphQL server (<10) to the latest version (13). It looks everything is working OK after doing the necessary changes. The only thing is that HotChocolate dropped the PaginationAmountType class. The queries done by clients of my service do not seem to be compatible anymore. As this is a critical…
-
How to type the event of a serverless resolver sent from an Amplify GraphQL call
2 I am trying to type the event object coming from my AWS Amplify/NextJS front-end. It is sent via Amplify/GraphQL and being received in a NodeJS AWS Lambda. The typescript interface contained in import { AppSyncResolverEvent } from "aws-lambda"; – but this doesn’t quite match the event object that’s being received. Can someone please advise…
-
Node.js Developer – Caspex Corporation – Sunnyvale, CA
Caspex Corporation Sunnyvale, CA Depends on Experience Contract: W2, 6 Month(s) Skills Nodejs Graphql node Job Description Position: Sr Node.js Developer Location: Sunnyvale, CA Here is the summary of the requirement: Key skills: Experience in consuming SOAP and REST Web services JavaScript, HTML, CSS Experience with Node.js. and GRAPHQL Job Description: Strong proficiency with JavaScript,…
-
Python Developer @ Remote – Hermitage Info Tech, LLC. – Remote
Hermitage Info Tech, LLC. Remote Depends on Experience Contract: W2, Independent No Travel Required Skills python GraphQL Job Description W2 or 1099 POSITION : Python Developer LOCATION : Remote – MUST work EST REQUIRED SKILLS Proficiency in GraphQL Proficiency in Python Regards Naresh7-3-2-3-3-8-7-5-2-0k.naresh at hermitageinfotech dot com https://www.dice.com/job-detail/c5d3b7dc-c81c-426d-bd1a-f4b519642fe9
-
Python Developer with GraphQL at Remote but must be EST OR CST – Gemini Consulting Services – Remote
Gemini Consulting Services Remote Depends on Experience Contract: W2 Skills GraphQL Strong SQL Job Description Greetings! Hope you are doing good, I am Rakesh from Gemini Consulting & Service getting in touch with you to see if you would be available and looking for any new opportunities and possibly be interested in discussing the below…
-
What plugin should I use to generate types for a server-side only library?
0 I have a working codegen.yml example using: src/generated/graphql.tsx: plugins: – typescript – typescript-operations – typescript-react-apollo that works great for our front end code making a tsx final result used with react. Over in my other project: src/generated.ts: plugins: – "typescript" – "typescript-operations" – "typescript-document-nodes" I’ve replaced typescript-react-apollo with typescript-document-nodes and sometimes I can get…
-
Android Developer – VDart, Inc. – Plano, TX
VDart, Inc. Plano, TX Full Time, Accepts corp to corp applications, Contract: W2, Independent Skills Android Kotlin GraphQL Job Description VDart Inc is the leading global provider of digital solutions, products and talent management company providing digital technology solutions in Automotive, Manufacturing, Energy & Utilities and Healthcare Industries. Led by a strong global team located…
-
How to import gql to create typedefs in apollo server v4?
0 In the version 3 of apollo server, we could use import {gql} from "apollo-server-express" to create typedefs and schemas. But in v4 of apollo server, apollo-server-express and apollo-server-core are depreciated and will be removed. So, instead of importing gql from apollo-server-express, how can we import gql I tried import gql from new @apollo/server and…
-
how i can create a function in flutter using graphQL to register a user in supabase platform?
-2 the problem is specifically related to user registration using GraphQL on the Supabase platform, and you’re seeking help to resolve it. this the function i use Future<void> registerEmployee( String email, String password, BuildContext context) async { try { setIsLoading = true; if (email.isEmpty || password.isEmpty) { throw ‘All Fields are required’; } const String…
-
is typegraphql field generic object possible
0 Hi I am a bit of a newbie in typegraphql and graphql in general so theres a thing that i want to change but to put it simply: Current Working Code I want to change: @ObjectType() export class Game { @Field(() => Int) id: number; @Field({ nullable: true }) producedByUserName?: string; @Field({ nullable: true…