Gatsby + Shopify query page from shopisify is it possible? [closed]

I try to build a site from Shopify API with Gatsby. I manage to query information from product, but I don't find a way to query the page from Shopify. I don't find in graphQl something like allShopifyPages that can give the information, description, title or anything else about the page who has been created in Shopify. So my question is possible and if yes how ? Below the examples of page content I want to query in graphql I've opened a discussion on Gatsby but nobody answered from few months. https://github.com/gatsbyjs/gatsby/discussions/33394

enter image description here


If you want to know pages, then you have to query the right endpoints. If you examine the RestAPI, you'll find:

https://shopify.dev/api/admin-rest/2022-01/resources/page#top

That gives you exactly what you are looking for. I am not sure what the analog is for GQL, there might not be one at this time, but you are free to search.