import { ApolloClient, InMemoryCache, NormalizedCacheObject } from '@apollo/client'; import { getUser } from './gql-queries'; export interface GraphQLConfig { gqlEndpoint: string; } export class GQLClient { private client: ApolloClient; constructor (config: GraphQLConfig) { this.client = new ApolloClient({ uri: config.gqlEndpoint, cache: new InMemoryCache() }); } async getUser () : Promise { const { data } = await this.client.query({ query: getUser }); return data; } }