back to all posts

My Coding Blog From Scratch Using Gatsby and MDX - 6

by Nabendu Biswas / February 20th, 2020

#gatsby #react #javascript
Series: Gatsby-mdx

Welcome to part-6 of the series. In this part we will, first start with our GraphQL queries. So, head over to http://localhost:8000/___graphql but make sure gatsby develop is running in the terminal.

Here, we will first check our allMdx query by checking the totalCount. And it returns the right count.

allMdxallMdx

Rest of the chapter is exclusive content and is from my book Foundation Gatsby Projects.

The book can be purchased from Apress site here

Foundation Gatsby Projects

We can open the console and check the result.

consoleconsole

This completes part-6 of the series.

You can find the code for the same in this github repo.

Nabendu Biswas