Fetch Data from a GraphQL API

Alex Banks
InstructorAlex Banks
Share this video with your friends

Social Share Links

Send Tweet
Published 5 years ago
Updated 3 years ago

To query a GraphQL API, all you need to do is send an HTTP request that includes the query operation in the body of the request. In this lesson, we will use the browser’s fetch method to request the total days skied from our GraphQL API.

Instructor: [00:00] First we're going to need an endpoint. We'll use localhost 4000.

[00:05] Next we're going to need a query, so we'll use this query for total days that we have right here running in the playground. Now we'll create some options for our fetch request. We'll use a post method.

[00:17] For the headers, we'll say that the content type is application JSON. Then we need to take this query and add it to the body, so I'm going to JSON stringify the query here.

[00:26] Now we can send a fetch request to our endpoint with our options. When we get a response from this endpoint, we'll go ahead and pluck the JSON out of the response. Then what will be returned to this next-then function is the actual data from the response in JSON.

[00:40] I'll go ahead and destructure that, and I should have our total days. We can create a string that has our total days and then pipe that along to a console log. If there's anything wrong, we can cache our errors and just log them using a console error.

[00:57] Now let's go ahead and start our client. I'll run NPM Start, and we'll see our application start up here in localhost 3000. We can see that we have our total days response. Right here, we see 100 days have been logged to the console.

[01:13] Let's take a quick look at what's going on here. In order to send a query to a GraphQL endpoint, we need the URL for the endpoint, and we also need the query itself. This is where we ask for the data that we want from the endpoint.

[01:25] After that, all we need to do is send an HTTP request, a post request that has the query inside of the body of the request. We should receive the data that we are asking for and the response under a field called Data.

egghead
egghead
~ 2 minutes ago

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

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

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!

Markdown supported.
Become a member to join the discussionEnroll Today