OpenPanel/packages/nestjs-query/test/gqlClient.ts
2024-02-05 10:23:04 +01:00

8 lines
233 B
TypeScript

import { GraphQLClient } from "graphql-request";
// const API_URL = "https://api.nestjs-query.refine.dev/graphql";
const API_URL = "http://localhost:3003/graphql";
const client = new GraphQLClient(API_URL);
export default client;