Thursday, January 21, 2021

Query all images in gatsby

 The query is 

query MyQuery {
  allFile {
    edges {
      node {
        name
        ext
      }
    }
  }
}