Last active
June 9, 2018 15:53
-
-
Save mcasey8540/062dfd60b428f8c43904e0f0366f47e2 to your computer and use it in GitHub Desktop.
shopify-products-graphql.json
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
| { | |
| 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