Query the GraphCMS GraphQL API with Apollo GraphQL

InstructorColby Fayock

Share this video with your friends

Send Tweet

We are going to start visualizing what our data looks like by using graphcms' Playground. Here we can query our data and explore our content API right from the dashboard.

We are going to use Next.js getStaticProps to query our data at compile time so we don't have to make the browser wait for that request when it's getting loaded.

To actually make our query, we are going to be using Apollo Client.