import { GraphQLClient } from "graphql-request"; const endpoint = process.env.GO_GRAPHQL_URL || "http://localhost:8080/graphql"; export const graphqlClient = new GraphQLClient(endpoint, { headers: { // Add any required headers here, e.g. authorization }, });