Created
January 18, 2020 22:44
-
-
Save fourjuaneight/3cb7030b01f5463e70caecd53b6f1240 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/templates/products.js | |
export const query = graphql` | |
query ProductQuery($id: String!) { | |
cosmicjsProducts(id: { eq: $id }) { | |
content | |
metadata { | |
id | |
image { | |
imgix_url | |
url | |
} | |
price | |
} | |
slug | |
title | |
} | |
} | |
`; | |
const ProductListing = ({ data, location }) => ( | |
<Layout location={location}> | |
<Product product={data.cosmicjsProducts} url={location.href} single /> | |
</Layout> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment