In this lesson, we create an urql client with the createClient
method. Once we provide the createClient
our GraphQL endpoint, we pass the client to urql's Provider
component so that the urql can be used in our application.
Instructor: [0:00] Here, we have a React app that has a sad error. We're getting this error because in our app component we are firing a courseQuery to fetch courses from egghead.
[0:11] To fix this, we need to import {createClient} from 'urql'. To create an urql client, we go const client = createClient. CreateClient takes an object with a property of url. Our URL will be egghead's GraphQL API endpoint. Next, we will import Provider from urql. We will wrap our app in the Provider. We save it. Now we'll pass value={client}.
[1:20] Now, when we opened our developer tools, you'll see that data is loading. When we load it again, here's our GraphQL request. You can see that the query is being sent.
Member comments are a way for members to communicate, interact, and ask questions about a lesson.
The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io
Be on-Topic
Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.
Avoid meta-discussion
Code Problems?
Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context
Details and Context
Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!