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

12 lines
370 B
TypeScript

import { GraphQLClient } from "graphql-request";
const API_URL = "https://api.strapi.refine.dev/graphql";
const client = new GraphQLClient(API_URL);
client.setHeader(
"Authorization",
"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwiaWF0IjoxNjQ2MzkzNDY2LCJleHAiOjE2NDg5ODU0NjZ9.5TjmTOLL7x7kcNKpq9MFwI_w1fReF4f-wlir2rocvi8",
);
export default client;