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...
blog.ahmadullah.in1 min read