Tag: graphql
-
Data not displayed in React.js frontend with graphql
0 graphql query running import { gql } from ‘@apollo/client’; const GET_CLIENTS = gql` query getClients { clients { id name email phone } } `; export { GET_CLIENTS }; import {gql} from ‘@apollo/client’; const DELETE_CLIENT = gql` mutation deleteClient($id: ID!) { deleteClient(id:$id) { id name email phone } } `;[enter image description here][1] export…
-
Cannot read properties of undefined (reading ‘FIELD’) when bumping @apollo/client to 3.8.x
0 I have a particular feature where I require to implement a second graphql client (using @apollo/client) that uses the old ws protocol for subscriptions – the other graphql client uses the latest one. This is a code snippet of a codesandbox link import React, { useState } from "react"; import reactLogo from "./assets/react.svg"; import…
-
GraphQL (GroupBy fieldname) in SpringBoot and MySQL
0 I have just started to learn GraphQL, I am using GraphQL with SpringBoot and MySQL. I have a table in MySQL, "Employee" which looks as follows ID NAME EXPERIENCE DEPARTMENT_NAME 1 Alex 7 Sales 2 Josh 6 Marketing 3 Hans 3 Sales 4 Max 8 Marketing and ofcourse i have POJO in SpringBoot class…
-
What is the correct way to update a post within a graphql subscription?
0 I’m working on a project using graphql with React Native in the frontend and Nodejs in the backend with mongodb as my database. In this project, I have posts that are created and shown on a screen. I’ve done this using graphql subscriptions for real time updating of posts, but I need the user…
-
Software Development Engineer IV – Dimensional Thinking – Berkeley Heights, NJ
Dimensional Thinking Berkeley Heights, NJ $70 – $80 Contract: W2 Skills Software Development MongoDB collaborate unit testing GraphQL Job Description Description: BACK END Responsibilities:Perform requirement analysis by collaborating with business and IT stakeholdersFinalize the project scope for the upcoming phase/sprintConduct the system design in relates to the finalized scopePerform application coding to the agreed…
-
.Net Back End Developer – Avensia Technologies LLC – Mechanicsburg, PA
Avensia Technologies LLC Mechanicsburg, PA $70 – $80 Contract: Independent, 12 Month(s) Skills .net core graphQL Job Description Hi Pals, we have a position for .Net Back End Developer at Mechanicsburg, PA (Onsite) Title:.Net Back End Developer (onsite) Location:Mechanicsburg,PA Mode:Hybrid (Weekly 2-3 DAYS) Duration:12 Plus MonthsNO OPT’SSkills:Traditional .net/.net core, typescript, angular, Azure, NTT framework, insurance…
-
Hasura action handler does not exist (Name or service not known)
2 I have an instance of Hasura running in the Docker container and action handler API written in NodeJS/Express running directly on the machine. When I test everything locally it works like a charm ( macOS M1 ), but when I replicate the same setup on the server ( Ubuntu 20.04 ) it returns an…
-
Unable to push or pull changes in amplify
0 I need some help. I tried to set a default value with = in aws graphql API with AWS Amplify like type User @model @auth(rules: [{allow: public}, {allow: private, operations: [read]}]) { id: ID! isFavorite: Boolean logo: String status: String = "active" # the issue line } then I pushed the code but in…
-
How To Throw Errors In Apollo Server v4?
0 thanks for looking into this. So I am trying to migrate my Apollo Server from V3 to V4, I have a resolver that type checks for an Access Token and returns it like so export class LoginResolver { @Mutation(() => AccessToken) async login( @Arg("email") email: string, @Arg("password") password: string, @Ctx() { prisma, res }:…