Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. export const fluidImage = graphql`
  2. fragment fluidImage on File {
  3. childImageSharp {
  4. fluid(maxWidth: 1000) {
  5. ...GatsbyImageSharpFluid
  6. }
  7. }
  8. }
  9. `;
  10.  
  11. export const pageQuery = graphql`
  12. query {
  13. imageOne: file(relativePath: { eq: "me.jpg" }) {
  14. ...fluidImage
  15. }
  16. }
  17. `
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement