saleor-apps-redis_apl/apps/cms/src/providers/GraphQLProvider.tsx

17 lines
501 B
TypeScript
Raw Normal View History

import { useAppBridge } from "@saleor/app-sdk/app-bridge";
import { PropsWithChildren } from "react";
import { Provider } from "urql";
import { createClient } from "../lib/graphql";
export function GraphQLProvider(props: PropsWithChildren<{}>) {
const { appBridgeState } = useAppBridge();
const saleorApiUrl = appBridgeState?.saleorApiUrl!;
const client = createClient(saleorApiUrl, async () => ({
token: appBridgeState?.token!,
}));
return <Provider value={client} {...props} />;
}