import { Client, cacheExchange, fetchExchange } from "@urql/core"; const urql = new Client({ url: process.env.GRAPHQL_URL || "", exchanges: [cacheExchange, fetchExchange], fetchOptions: { headers: { "x-api-key": process.env?.GRAPHQL_API_TOKEN || "" } } }); export default urql;