gatsbyjs / gatsby-source-wordpress-experimental

The upcoming v4 of gatsby-source-wordpress, currently in beta
MIT License
385 stars 100 forks source link

Docs: Add File.publicURL documentation #437

Closed TylerBarnes closed 3 years ago

TylerBarnes commented 3 years ago

This addition to the starter + docs allows querying the public URL of a file directly.

{
  allWpPost {
    nodes {
      featuredImage {
        node {
          localFile {
            publicURL
          }
        }
      }
    }
  }
}
TylerBarnes commented 3 years ago

Closes https://github.com/gatsbyjs/gatsby-source-wordpress-experimental/issues/298