Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix imports on next examples (#1587)

authored by

Pascal Pixel and committed by
GitHub
8acc61d1 36a759ac

+2 -6
+1 -5
examples/with-next/pages/index.js
··· 1 - import { initUrqlClient, withUrqlClient } from "next-urql"; 1 + import { withUrqlClient } from "next-urql"; 2 2 import { 3 - ssrExchange, 4 - dedupExchange, 5 - cacheExchange, 6 - fetchExchange, 7 3 useQuery, 8 4 gql 9 5 } from "urql";
+1 -1
examples/with-next/pages/server.js
··· 4 4 dedupExchange, 5 5 cacheExchange, 6 6 fetchExchange, 7 - useQuery 7 + useQuery, 8 8 gql 9 9 } from "urql"; 10 10