Gatsby pages are created in different ways:
src/pages
into pagescreatePages
API in your site's gatsby-node.js
createPages
APIGatsby will spawn a GraphQL server along with your dev server and you can use that to list all pages.
Navigate to HOST:PORT/___graphql
e.g localhost:8000/___graphql
and past the following query.
{
allSitePage {
edges {
node {
path
component
pluginCreator {
name
pluginFilepath
}
}
}
}
}
In this lesson you will learn how to add React Components inside the src/pages
folder for Gatsby to create pages from them automatically