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 typo in `docs/basics/core.md`. (#1667)

* Fix typo in `docs/basics/core.md`.

Change `urql` to `@urql/core` in the import statement.

* Fix import statement typo.

authored by

Ejez and committed by
GitHub
00539ff2 720f60c6

+2 -2
+2 -2
docs/basics/core.md
··· 134 134 create the GraphQL client. This central `Client` manages all of our GraphQL requests and results. 135 135 136 136 ```js 137 - import { createClient } from 'urql'; 137 + import { createClient } from '@urql/core'; 138 138 139 139 const client = createClient({ 140 140 url: 'http://localhost:3000/graphql', ··· 172 172 `defaultExchanges`. 173 173 174 174 ```js 175 - import { createClient, defaultExchanges } from 'urql'; 175 + import { createClient, defaultExchanges } from '@urql/core'; 176 176 177 177 const client = createClient({ 178 178 url: 'http://localhost:3000/graphql',