openpanel/packages/nestjs-query/test/gqlClient.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

9 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;