I have a simple graphQL server import { ApolloServer } from "@apollo/server"; import { startStandaloneServer } from "@apollo/server/standalone";
I am new to graphql and I am trying to upload an image to the graphql server and I don\'t know how to start. I am using the images from the gallery. The document says to convert the file into an Uploa
` import React, { useEffect, useState } from \'react\'; import { useQuery, gql } from \'@apollo/client\';
I want to pass the express req and res object to my context because i want to use express-sessions to do session-based-auth because the default requests from the context does not know about sessions.