How to filter allMarkdownRemark by folder (Gatsby and GraphQl)
{ resolve: `gatsby-source-filesystem`, options: { name: `pages`, path: `${__dirname}/src/pages/`, }, }, { resolve: `gatsby-source-filesystem`, options: { name: `posts`, path: `${__dirname}/src/posts/`, }, }, Here, the nam...
Jan 2, 20231 min read29