Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. {
  2. collectionByHandle(handle: "{collection_handle_here}") {
  3. handle
  4. products( first:250 ) {
  5. pageInfo {
  6. hasNextPage
  7. hasPreviousPage
  8. }
  9. edges{
  10. cursor
  11. node {
  12. availableForSale
  13. productType
  14. id
  15. handle
  16. title
  17. onlineStoreUrl
  18. tags
  19. images(first:2) {
  20. edges {
  21. node {
  22. altText
  23. transformedSrc(maxWidth: 800)
  24. }
  25. }
  26. }
  27. priceRange{
  28. minVariantPrice{
  29. amount
  30. currencyCode
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement