Tag: graphql
-
Lambda returning wrong data – type mismatch error, expected type LIST
0 In my schema.graphql I have set query: type Query { listCourses(param1: String, param2: String): [Course] and type Course: type Course { id: ID! fullname: String shortname: String idnumber: String summary: String } And in my frontend application I am calling this query that triggers lambda: async getDataByCodeType() { const query = /* GraphQL */…
-
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…
-
“Mime type of document could not be determined” Error on Apollo Server
0 I was given a link for a graphQL server with already built in queries and mutations. When I tried to run a mutation, I got the following response: { "data": {}, "errors": [ { "message": "Mime type of document could not be determined" } ] } What could be the problem and how can…
-
How to create Ember Service that fetches data from Apollo GraphQL Server
0 I successfully fetched data from Apollo GraphQL Server in Amber route using ember-apollo-client. I tried the same approach to have a service fetching data but I’m getting Uncaught TypeError: this.apollo.query is not a function from app/services/nav-categories.js. Minimal Working Example Start a new app using $ ember new super-rentals –lang en $ ember generate service…
-
Wrap usePreloadedQuery in a custom hook
1 I’m new to working with react-relay and graphql. I’ve taken the initiative to create the custom hook below and I’m wondering if this is the correct way to do it or if it goes against the recommended practices in Relay. From the usePreloadQuery documentation I do notice that we use it on a deeper…
-
DOMException: signal is aborted without reason in useEffect with async call
5 I have a project using React in Strict Mode alongside GraphQL. I updated some packages, and I now get the following error in useEffect containing async calls. useEffect(() => { const loadTags = async () => { const { data } = await fetchTags(); setTags([…(data?.tags || [])]); }; loadTags(); }, [current, fetchTags]); DOMException: signal…
-
How to query a date/time field using pothos with prisma and postgresql
0 I’ve got my pothos set up using Prisma and postgresql. I’m trying to expose the createdAt and updatedAt fields from prisma in my builder: Prisma schema: model Course { id Int @id @unique @default(autoincrement()) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt // removed fields for brevity. } My builder: builder.prismaObject(‘Course’, { fields: (t) => ({…
-
Hasura coversion of date time from date string
0 I have this select query as Native query in Hasura SELECT tblPhOrderSummary.Id as OrderId, tblPhOrderSummary.CreatedOn as OrderDate, tblItems.ItemCode as ItemCode, tblPhOrderProducts.ItemDescription, tblItems.ModelCode AS ModelCode, tblItems.Barcode AS Barcode, tblPhOrderProducts.LOT AS LOT, ” AS Batch, tblPhOrderProducts.Expiry AS Expiry, tblItems.SalesPrice AS UnitSalesPrice, tblPhOrderProducts.Instock AS InStock, tblPhOrderProducts.CurrentStock AS CurrentStock, tblPhOrderProducts.OrderQuantity AS OrderQuantity FROM tblPhOrderProducts INNER JOIN tblItems ON…