Add a custom sourceName
field to Remark nodes to filter them easily.
Install
yarn add gatsby-remark-source-name
How to use
First add the plugin to your gatsby-config.js
.
plugins: [`gatsby-remark-source-name`];
Next you define a name for the group of markdown files in the filesystem source plugin:
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/_posts`,
name: 'blog',
}
}
You can then query the source name in GraphQL:
exports.createPages = ({ boundActionCreators, graphql }) => {
const { createPage } = boundActionCreators;
const PostTemplate = path.resolve('src/templates/post.js');
const query = graphql(`
query {
allMarkdownRemark() {
edges {
node {
excerpt(pruneLength: 250)
html
fields {
sourceName
}
}
}
}
}
`);
return query.then(result => {
if (result.errors) {
return Promise.reject(result.errors);
}
const posts = result.data.allMarkdownRemark.edges.filter(
single => single.node.fields.sourceName === 'blog'
);
posts.forEach(({ node }) => {
createPage({
path: `/blog/${node.frontmatter.slug}`,
component: PostTemplate,
context: {
slug: node.frontmatter.slug,
},
});
});
});
});