Regenerate GraphQL Server

This commit is contained in:
2023-05-04 11:29:53 +02:00
parent 4ae763ee1b
commit bb20ed655a
4 changed files with 22 additions and 84 deletions

View File

@@ -1,6 +1,6 @@
import { expiringCacheExchange } from "./cache-exchange.js";
import {
Client,
CreateClient,
setContextClient,
fetchExchange,
} from "@urql/svelte";
@@ -22,7 +22,7 @@ export function init(extraInitQuery = "") {
? getContext("jwt")
: getContext("cc-config")["jwt"];
const client = new Client({
const client = CreateClient({
url: `${window.location.origin}/query`,
fetchOptions:
jwt != null ? { headers: { Authorization: `Bearer ${jwt}` } } : {},