Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save isabellachen/77e7aa042432912f319a82c69c1d6dc5 to your computer and use it in GitHub Desktop.
Save isabellachen/77e7aa042432912f319a82c69c1d6dc5 to your computer and use it in GitHub Desktop.
Query for image files in directory with source gatsby-file-system
query {
  allFile(filter:{relativeDirectory: {eq: "demo-map"}}) {
    edges {
      node {
        absolutePath
        name
        relativePath
        relativeDirectory
        extension
        childImageSharp {
          fixed(width: 250) {
            src
          }
        }
      }
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment