mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { Client, fetchExchange } from "@urql/core";
|
|
|
|
export const API_URL = "https://api.nestjs-query.refine.dev/graphql";
|
|
|
|
const client = new Client({ url: API_URL, exchanges: [fetchExchange] });
|
|
|
|
export default client;
|