snowballtools-base/packages/gql-client/src/gql-client.ts

27 lines
558 B
TypeScript
Raw Normal View History

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