python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Not able to add data using mutation on Apollo Client
Mutation on client side of Apollo server:
import { gql } from "@apollo/client";
export const UPLOAD_IMAGE = gql`
mutation uploadImage($url: String!, $description: String!, $posterName: Str...
Tom Brooke
Votes: 0
Answers: 1
Graphql-ws: separate websocket connection is opened for each subscription
I'm a newbie in websockets.
I use urql and graphql-ws (migrated from subscriptions-transport-ws) to get graphql subscriptions. The code is following:
export const useUrqlClient = () => {
const he...

Vyacheslav Fedorin
Votes: 0
Answers: 1
How can a nested field in graphQL query get its own arguments
I'm working on a cursor based pagination that requires the a nested field to access the args. So far, i've been unable to get the args to its desired field.
type Game {
players(first: Int, afte...
Mhd
Votes: 0
Answers: 1
How to use Hook inside Nextjs middleware?
I have a middleware like this
import type { NextFetchEvent, NextRequest } from "next/server";
import { NextResponse } from "next/server";
import { useCheckIsAdminQuery } from "...
Loc Tran
Votes: 0
Answers: 1