I am using the Gatsby develop graphiql sandbox to test some queries, I have a working query that is pulling markdown files using the gatsby-transformer-remark plugin. My markdown files are located in src/posts/post-1.md these are returned in my query below, however I started to use Netlifys cms to create markdown files, and the way I set it up the markdown files are located in src/team/post-1.md Now this markdown file is not returned in the query, so it makes me think the default allMarkdownRemark query requires the markdown files to be in the src/posts folder is there a way to overwrite this and point to the src/team folder Ok that just about covers it here is my query.
query BlogPostArchive1 {
allMarkdownRemark(
limit: 10
sort: { order: DESC, fields: [frontmatter___date] }
) {
edges {
node {
excerpt
frontmatter {
title
slug
date(formatString: "MMMM DD, YYYY")
}
}
}
}
}