From 20aa5eaf238e1b2405a91d1f32049f96456c74a8 Mon Sep 17 00:00:00 2001 From: anaghav2023 <124548794+anaghav2023@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:25:48 +0530 Subject: [PATCH 1/3] increasing limit for products api --- plugins/shopify/src/plugin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/shopify/src/plugin.ts b/plugins/shopify/src/plugin.ts index 43318666529..9a1db222086 100644 --- a/plugins/shopify/src/plugin.ts +++ b/plugins/shopify/src/plugin.ts @@ -51,6 +51,7 @@ registerCommercePlugin( (await client.product.fetchQuery({ query: search ? `title:*${search}*` : '', sortKey: 'TITLE', + first: 250 })) || []; return sources.map((src: any) => { return { From dc5236d433b5fe25c04520396c35871e1aa0928c Mon Sep 17 00:00:00 2001 From: anaghav2023 <124548794+anaghav2023@users.noreply.github.com> Date: Thu, 13 Feb 2025 18:06:06 +0530 Subject: [PATCH 2/3] adding to collection as well --- plugins/shopify/src/plugin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/shopify/src/plugin.ts b/plugins/shopify/src/plugin.ts index 9a1db222086..3fea3677dfd 100644 --- a/plugins/shopify/src/plugin.ts +++ b/plugins/shopify/src/plugin.ts @@ -86,6 +86,7 @@ registerCommercePlugin( return client.collection.fetchQuery({ query: search ? `title:*${search}*` : '', sortKey: 'TITLE', + first: 250 }); }, From 4142664e2beb5d8610d878e00e4e64048a50a5bb Mon Sep 17 00:00:00 2001 From: anaghav2023 <124548794+anaghav2023@users.noreply.github.com> Date: Fri, 14 Feb 2025 07:45:18 +0530 Subject: [PATCH 3/3] version bump update --- plugins/shopify/package-lock.json | 4 ++-- plugins/shopify/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/shopify/package-lock.json b/plugins/shopify/package-lock.json index ac74aabaa64..5fe9588f9c4 100644 --- a/plugins/shopify/package-lock.json +++ b/plugins/shopify/package-lock.json @@ -1,12 +1,12 @@ { "name": "@builder.io/plugin-shopify", - "version": "1.0.4", + "version": "1.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@builder.io/plugin-shopify", - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "dependencies": { "@builder.io/plugin-tools": "^0.0.3", diff --git a/plugins/shopify/package.json b/plugins/shopify/package.json index 9c11ff9f500..c89ad2a9d6f 100644 --- a/plugins/shopify/package.json +++ b/plugins/shopify/package.json @@ -1,6 +1,6 @@ { "name": "@builder.io/plugin-shopify", - "version": "1.0.4", + "version": "1.0.5", "description": "", "keywords": [], "main": "dist/plugin.system.js",