Skip to content

Instantly share code, notes, and snippets.

@mcasey8540
Last active June 9, 2018 15:53
Show Gist options
  • Select an option

  • Save mcasey8540/062dfd60b428f8c43904e0f0366f47e2 to your computer and use it in GitHub Desktop.

Select an option

Save mcasey8540/062dfd60b428f8c43904e0f0366f47e2 to your computer and use it in GitHub Desktop.
shopify-products-graphql.json
{
shop {
products(first: 20 query: "2015") {
edges {
node {
id
handle
tags
vendor
metafields(first: 10) {
edges {
node {
id
key
description
value
}
}
}
variants(first: 10){
edges{
node{
id
price
}
}
}
}
cursor
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment