8. Querying live data
2m
You're currently on an older version of this course. View course changelog.

We've implemented our and our , and we've connected them up to the server. Time to find out if everything works together to actually serve live data.

You can trace your 's journey all the way back to the client and expect to see the live data in your browser, but there is actually a secret shortcut to server-land: the Apollo Studio Explorer! It lets you connect to the server currently running on localhost:4000 and helps you build queries quickly to test out.

Hand-drawn illustration depicting a shortcut to server-land through Apollo Studio Explorer as an alternative to starting from client-land

Our server is still running, so you should see a message in the terminal saying the server is indeed running and that we can start with the Explorer at the link provided.

To open the Explorer in , you can cmd+click on the URL in your terminal (from starting the server) to open it in your browser, or you can open it here: http://localhost:4000.

In the browser, we can see that our server is running successfully, with a message inviting us to it. Let's click Query your server to see our in action with .

http://localhost:4000
A screenshot of the landing page with a button prompting to query the server using Sandbox.

We can use our example from Lift-off I to test out our new :

query GetTracks {
tracksForHome {
id
title
thumbnail
length
modulesCount
author {
id
name
photo
}
}
}

Let's go ahead and run it... and we get the data that's returned by our resolver! 🎉 We can also see that we only get exactly the data we queried for, nothing extra, even though our REST endpoint wasn't structured that way. This means that the resolver has completed its mission, and so have we!

Code Challenge!

In the Apollo Studio Explorer, test the same tracksForHome query we used in Part I (or copy the one above and paste it in the Explorer). Run the query and copy-paste the last tracks entry below.

Let's click on the button once more. Did you notice how fast we got the response the second time? The first one took about half a second, then this one returned in just a few milliseconds. This is thanks to our RESTDataSource's built-in resource caching.

Just for the fun of comparing, you can take a look at the fetch implementation below. A new has been added called tracksforHomeFetch to our schema. The are using node-fetch instead of the RESTDataSource. For each call, the response takes the same amount of time, about half a second. Much less efficient, now we really see why we should keep using the RESTDataSource implementation!

Note: Don't copy the two code snippets below to your project, you can find the full fetch code example in the repo's fetch-example branch in the final folder.

server/src/schema.js
const typeDefs = gql`
type Query {
tracksForHome: [Track!]!
tracksForHomeFetch: [Track!]!
}
# ...
`;
server/src/resolvers.js
const resolvers = {
Query: {
tracksForHome: () => {
// ...
}
tracksForHomeFetch: async () => {
const baseUrl = "https://odyssey-lift-off-rest-api.herokuapp.com";
const res = await fetch(`${baseUrl}/tracks`);
return res.json();
},
},
Track: {
// using fetch instead of dataSources
author: async ({ authorId }, _, { dataSources }) => {
const baseUrl = "https://odyssey-lift-off-rest-api.herokuapp.com";
const res = await fetch(`${baseUrl}/author/${authorId}`);
return res.json();
// return dataSources.trackAPI.getAuthor(authorId);
},
},
}
Which of these have we demonstrated in the Explorer by comparing a query using the RESTDataSource with a query using a simple fetch approach?
Previous

Share your questions and comments about this lesson

Your feedback helps us improve! If you're stuck or confused, let us know and we'll help you out. All comments are public and must follow the Apollo Code of Conduct. Note that comments that have been resolved or addressed may be removed.

You'll need a GitHub account to post below. Don't have one? Post in our Odyssey forum instead.