Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-filesystem-markdown-name

Adds a new node field called “name” designed to filter on a directory referenced by gatsby-source-filesystem:

Install

npm i gatsby-source-filesystem-markdown-name

or

yarn add gatsby-source-filesystem-markdown-name

Example gatsby-config.js

  plugins: [
    {
      resolve: `gatsby-source-filesystem`,
      options: {
        path: `${__dirname}/src/content/posts/`,
        name: 'posts',
      },
    },
    {
      resolve: `gatsby-source-filesystem`,
      options: {
        path: `${__dirname}/src/content/pages/`,
        name: 'pages',
      },
    },
    'gatsby-source-filesystem-markdown-name',
  ]

Example GraphQL Query

query MyQuery {
  allMarkdownRemark(filter: {fields: {sourceName: {eq: "posts"}}}) {
    edges {
      node {
        fields {
          slug
          sourceName
        }
      }
    }
  }
}
© 2023 Gatsby, Inc.