openpanel/packages/nestjs-query/test/gqlClient.ts
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

9 lines
240 B
TypeScript

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