Skip to content

Instantly share code, notes, and snippets.

@stefanledin
Created August 9, 2019 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanledin/271522bdaf10ee935e09f22bb4a4a0e6 to your computer and use it in GitHub Desktop.
Save stefanledin/271522bdaf10ee935e09f22bb4a4a0e6 to your computer and use it in GitHub Desktop.
export const pageQuery = graphql`
query($slug: String) {
allWordpressPost(sort: {order: ASC, fields: date}) {
edges {
node {
featured_media {
localFile {
childImageSharp {
fluid(sizes: "(min-width: 1280px) 327px, (min-width: 768px) 39vw, 81vw") {
src
// [...]
}
}
}
}
}
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment