@anker-in/shopify-sdk 1.2.0-beta.6 → 1.2.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -947,17 +947,21 @@ var getCollectionsByHandlesQuery = (handles) => (
947
947
  `
948
948
  collection_${index}: collection(handle: "${handle}") {
949
949
  ...collection
950
- product(handle: $handle) {
951
- ...product
952
- metafields(identifiers: $productMetafieldIdentifiers) {
953
- ...metafield
954
- }
955
- variants(first: 250) {
956
- nodes {
957
- ...variant
958
- metafields(identifiers: $variantMetafieldIdentifiers) {
950
+ products(first: 9) {
951
+ edges {
952
+ node {
953
+ ...product
954
+ metafields(identifiers: $productMetafieldIdentifiers) {
959
955
  ...metafield
960
956
  }
957
+ variants(first: 10) {
958
+ nodes {
959
+ ...variant
960
+ metafields(identifiers: $variantMetafieldIdentifiers) {
961
+ ...metafield
962
+ }
963
+ }
964
+ }
961
965
  }
962
966
  }
963
967
  }