← back to Tk 11331 Exec
TK-11331: fix reorder arg (positions), add offset resume + D1/D2 rollback scripts
4e1dc578fc2b96821e302fffbff2cef215d48775 · 2026-09-09 13:19:39 -0700 · Steve Abrams
Files touched
M d1_reorder.mjsA d1_rollback.mjsM d2_metafields.mjsA d2_rollback.mjsA data/d1-restore-map.jsonlA verify_one.mjs
Diff
commit 4e1dc578fc2b96821e302fffbff2cef215d48775
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed Sep 9 13:19:39 2026 -0700
TK-11331: fix reorder arg (positions), add offset resume + D1/D2 rollback scripts
---
d1_reorder.mjs | 2 +-
d1_rollback.mjs | 18 +++++++++++
d2_metafields.mjs | 4 ++-
d2_rollback.mjs | 33 +++++++++++++++++++
data/d1-restore-map.jsonl | 82 +++++++++++++++++++++++++++++++++++++++++++++++
verify_one.mjs | 4 +++
6 files changed, 141 insertions(+), 2 deletions(-)
diff --git a/d1_reorder.mjs b/d1_reorder.mjs
index 590d85a..d25dd96 100644
--- a/d1_reorder.mjs
+++ b/d1_reorder.mjs
@@ -8,7 +8,7 @@ const d1=JSON.parse(fs.readFileSync('data/d1_set.json','utf8')).slice(0,LIMIT);
const RESTORE='data/d1-restore-map.jsonl';
const rstream=fs.createWriteStream(RESTORE,{flags:'a'});
const M=`mutation($pid:ID!,$moves:[ProductVariantPositionInput!]!){
- productVariantsBulkReorder(productId:$pid,positionInput:$moves){
+ productVariantsBulkReorder(productId:$pid,positions:$moves){
userErrors{field message} }}`;
const VQ=`query($id:ID!){product(id:$id){variants(first:20){nodes{id sku position price}}}}`;
const isSample=s=>{s=(s||'').toLowerCase();return s.endsWith('sample');};
diff --git a/d1_rollback.mjs b/d1_rollback.mjs
new file mode 100644
index 0000000..86218b2
--- /dev/null
+++ b/d1_rollback.mjs
@@ -0,0 +1,18 @@
+// UNDO Decision 1 — restore each product's variant order to order_before. --apply to write.
+import fs from 'fs';
+import {gql,sleep} from './lib.mjs';
+const APPLY=process.argv.includes('--apply');
+const rows=fs.readFileSync('data/d1-restore-map.jsonl','utf8').trim().split('\n').filter(Boolean).map(l=>JSON.parse(l));
+const M=`mutation($pid:ID!,$moves:[ProductVariantPositionInput!]!){
+ productVariantsBulkReorder(productId:$pid,positions:$moves){userErrors{field message}}}`;
+console.log(`${APPLY?'APPLY':'DRY'} D1 rollback — ${rows.length} products`);
+let ok=0,fail=0;
+for(const r of rows){
+ const moves=r.order_before.map(v=>({id:v.id,position:v.position}));
+ if(!APPLY){ console.log(` would restore ${r.pid}`); continue; }
+ const res=await gql(M,{pid:r.gid,moves});
+ if(res.productVariantsBulkReorder.userErrors.length){ fail++; console.log(` ERR ${r.pid}`); }
+ else ok++;
+ await sleep(400);
+}
+console.log(`D1 rollback ${APPLY?'APPLIED':'DRY'} ok=${ok} fail=${fail}`);
diff --git a/d2_metafields.mjs b/d2_metafields.mjs
index 217e512..f99616c 100644
--- a/d2_metafields.mjs
+++ b/d2_metafields.mjs
@@ -6,8 +6,10 @@ import {execSync} from 'child_process';
import {gql,sleep} from './lib.mjs';
const APPLY=process.argv.includes('--apply');
const LIMIT=parseInt((process.argv.find(a=>a.startsWith('--limit='))||'').split('=')[1]||'99999');
+const OFFSET=parseInt((process.argv.find(a=>a.startsWith('--offset='))||'').split('=')[1]||'0');
const all=JSON.parse(fs.readFileSync('data/d2_set.json','utf8'));
-const batch=all.slice(0,LIMIT);
+const batch=all.slice(OFFSET,OFFSET+LIMIT);
+console.log(`slice offset=${OFFSET} limit=${LIMIT} -> ${batch.length} rows`);
const RESTORE='data/d2-restore-map.jsonl';
const rstream=fs.createWriteStream(RESTORE,{flags:'a'});
const SET=`mutation($mf:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mf){
diff --git a/d2_rollback.mjs b/d2_rollback.mjs
new file mode 100644
index 0000000..af60b5e
--- /dev/null
+++ b/d2_rollback.mjs
@@ -0,0 +1,33 @@
+// UNDO Decision 2 — restore min/uom old values from d2-restore-map.jsonl.
+// If old uom was null, DELETE the unit_of_measure metafield. Also reverts the PG mirror. --apply.
+import fs from 'fs';
+import {execSync} from 'child_process';
+import {gql,sleep} from './lib.mjs';
+const APPLY=process.argv.includes('--apply');
+const rows=fs.readFileSync('data/d2-restore-map.jsonl','utf8').trim().split('\n').filter(Boolean).map(l=>JSON.parse(l));
+const SET=`mutation($mf:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mf){metafields{key} userErrors{field message}}}`;
+const DEL=`mutation($id:ID!){metafieldDelete(input:{id:$id}){deletedId userErrors{field message}}}`;
+const FIND=`query($id:ID!){product(id:$id){mf:metafield(namespace:"global",key:"unit_of_measure"){id}}}`;
+const psql=sql=>execSync(`psql -h /tmp -d dw_unified -Atc ${JSON.stringify(sql)}`,{encoding:'utf8'}).trim();
+console.log(`${APPLY?'APPLY':'DRY'} D2 rollback — ${rows.length} products`);
+let ok=0,fail=0;
+for(const r of rows){
+ const mf=[];
+ if(r.wrote.min!==null && r.old.min!==null) mf.push({ownerId:r.gid,namespace:'global',key:'v_prods_quantity_order_min',type:'single_line_text_field',value:r.old.min});
+ if(r.wrote.uom!==null && r.old.uom!==null) mf.push({ownerId:r.gid,namespace:'global',key:'unit_of_measure',type:'single_line_text_field',value:r.old.uom});
+ if(!APPLY){ console.log(` would restore ${r.pid} min=${JSON.stringify(r.old.min)} uom=${JSON.stringify(r.old.uom)}${r.wrote.uom!==null&&r.old.uom===null?' (DELETE uom)':''}`); continue; }
+ try{
+ if(mf.length) { const res=await gql(SET,{mf}); if(res.metafieldsSet.userErrors.length){fail++;console.log(' SET-ERR',r.pid);continue;} }
+ if(r.wrote.uom!==null && r.old.uom===null){ // delete the uom we created
+ const f=await gql(FIND,{id:r.gid}); if(f.product.mf?.id){ await gql(DEL,{id:f.product.mf.id}); }
+ }
+ // revert PG mirror to old values (best-effort)
+ if(r.wrote.min!==null){ const v=r.old.min===null?null:`'{"type":"single_line_text_field","value":${JSON.stringify(r.old.min)}}'::jsonb`;
+ if(v) psql(`update shopify_products set metafields=jsonb_set(metafields,'{global,v_prods_quantity_order_min}',${v},true) where shopify_id='${r.gid}';`); }
+ if(r.wrote.uom!==null){ if(r.old.uom===null) psql(`update shopify_products set metafields=metafields#-'{global,unit_of_measure}' where shopify_id='${r.gid}';`);
+ else psql(`update shopify_products set metafields=jsonb_set(metafields,'{global,unit_of_measure}','{"type":"single_line_text_field","value":${JSON.stringify(r.old.uom)}}'::jsonb,true) where shopify_id='${r.gid}';`); }
+ ok++;
+ }catch(e){ fail++; console.log(' ERR',r.pid,String(e).slice(0,120)); }
+ await sleep(300);
+}
+console.log(`D2 rollback ${APPLY?'APPLIED':'DRY'} ok=${ok} fail=${fail}`);
diff --git a/data/d1-restore-map.jsonl b/data/d1-restore-map.jsonl
new file mode 100644
index 0000000..77e4dcd
--- /dev/null
+++ b/data/d1-restore-map.jsonl
@@ -0,0 +1,82 @@
+{"ts":"2026-09-09T20:16:14.049Z","pid":"1499495399536","gid":"gid://shopify/Product/1499495399536","order_before":[{"id":"gid://shopify/ProductVariant/13953340637296","sku":"XWH-52368-sample","position":1},{"id":"gid://shopify/ProductVariant/44820976894003","sku":"XWH-52368-yard","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/1499495399536 -> [{\"id\":\"gid://shopify/ProductVariant/13953340637296\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44820976894003\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:28.790Z","pid":"1499512930416","gid":"gid://shopify/Product/1499512930416","order_before":[{"id":"gid://shopify/ProductVariant/13953595375728","sku":"XWJ-52446-sample","position":1},{"id":"gid://shopify/ProductVariant/44820976959539","sku":"XWJ-52446-yard","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/1499512930416 -> [{\"id\":\"gid://shopify/ProductVariant/13953595375728\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44820976959539\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:30.567Z","pid":"6936681447475","gid":"gid://shopify/Product/6936681447475","order_before":[{"id":"gid://shopify/ProductVariant/41353950724147","sku":"XXP-969035-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802223767603","sku":"XXP-969035","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681447475 -> [{\"id\":\"gid://shopify/ProductVariant/41353950724147\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802223767603\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:32.381Z","pid":"6936681480243","gid":"gid://shopify/Product/6936681480243","order_before":[{"id":"gid://shopify/ProductVariant/41353950756915","sku":"XXP-969036-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802223964211","sku":"XXP-969036","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681480243 -> [{\"id\":\"gid://shopify/ProductVariant/41353950756915\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802223964211\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:34.090Z","pid":"6936681513011","gid":"gid://shopify/Product/6936681513011","order_before":[{"id":"gid://shopify/ProductVariant/41353950789683","sku":"XXP-969037-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802224193587","sku":"XXP-969037","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681513011 -> [{\"id\":\"gid://shopify/ProductVariant/41353950789683\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802224193587\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:35.771Z","pid":"6936681545779","gid":"gid://shopify/Product/6936681545779","order_before":[{"id":"gid://shopify/ProductVariant/41353950822451","sku":"XXP-969038-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802224422963","sku":"XXP-969038","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681545779 -> [{\"id\":\"gid://shopify/ProductVariant/41353950822451\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802224422963\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:37.325Z","pid":"6936681578547","gid":"gid://shopify/Product/6936681578547","order_before":[{"id":"gid://shopify/ProductVariant/41353950855219","sku":"XXP-969039-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802227273779","sku":"XXP-969039","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681578547 -> [{\"id\":\"gid://shopify/ProductVariant/41353950855219\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802227273779\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:38.850Z","pid":"6936681611315","gid":"gid://shopify/Product/6936681611315","order_before":[{"id":"gid://shopify/ProductVariant/41353950887987","sku":"XXP-969040-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802227470387","sku":"XXP-969040","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681611315 -> [{\"id\":\"gid://shopify/ProductVariant/41353950887987\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802227470387\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:40.435Z","pid":"6936681644083","gid":"gid://shopify/Product/6936681644083","order_before":[{"id":"gid://shopify/ProductVariant/41353950920755","sku":"XXP-969041-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802227732531","sku":"XXP-969041","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681644083 -> [{\"id\":\"gid://shopify/ProductVariant/41353950920755\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802227732531\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:41.957Z","pid":"6936681709619","gid":"gid://shopify/Product/6936681709619","order_before":[{"id":"gid://shopify/ProductVariant/41353951084595","sku":"XXP-969042-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802227896371","sku":"XXP-969042","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681709619 -> [{\"id\":\"gid://shopify/ProductVariant/41353951084595\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802227896371\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:43.585Z","pid":"6936681742387","gid":"gid://shopify/Product/6936681742387","order_before":[{"id":"gid://shopify/ProductVariant/41353951150131","sku":"XXP-969043-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228092979","sku":"XXP-969043","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681742387 -> [{\"id\":\"gid://shopify/ProductVariant/41353951150131\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228092979\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:45.129Z","pid":"6936681807923","gid":"gid://shopify/Product/6936681807923","order_before":[{"id":"gid://shopify/ProductVariant/41353951215667","sku":"XXP-969044-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228191283","sku":"XXP-969044","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681807923 -> [{\"id\":\"gid://shopify/ProductVariant/41353951215667\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228191283\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:46.613Z","pid":"6936681840691","gid":"gid://shopify/Product/6936681840691","order_before":[{"id":"gid://shopify/ProductVariant/41353951248435","sku":"XXP-969045-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228224051","sku":"XXP-969045","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681840691 -> [{\"id\":\"gid://shopify/ProductVariant/41353951248435\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228224051\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:48.361Z","pid":"6936681873459","gid":"gid://shopify/Product/6936681873459","order_before":[{"id":"gid://shopify/ProductVariant/41353951281203","sku":"XXP-969046-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228322355","sku":"XXP-969046","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681873459 -> [{\"id\":\"gid://shopify/ProductVariant/41353951281203\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228322355\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:49.870Z","pid":"6936681906227","gid":"gid://shopify/Product/6936681906227","order_before":[{"id":"gid://shopify/ProductVariant/41353951313971","sku":"XXP-969047-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228715571","sku":"XXP-969047","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681906227 -> [{\"id\":\"gid://shopify/ProductVariant/41353951313971\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228715571\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:51.524Z","pid":"6936681938995","gid":"gid://shopify/Product/6936681938995","order_before":[{"id":"gid://shopify/ProductVariant/41353951346739","sku":"XXP-969048-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802228977715","sku":"XXP-969048","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936681938995 -> [{\"id\":\"gid://shopify/ProductVariant/41353951346739\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802228977715\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:53.028Z","pid":"6936682004531","gid":"gid://shopify/Product/6936682004531","order_before":[{"id":"gid://shopify/ProductVariant/41353951412275","sku":"XXP-969049-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802229207091","sku":"XXP-969049","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682004531 -> [{\"id\":\"gid://shopify/ProductVariant/41353951412275\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802229207091\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:54.653Z","pid":"6936682037299","gid":"gid://shopify/Product/6936682037299","order_before":[{"id":"gid://shopify/ProductVariant/41353951445043","sku":"XXP-969050-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802229436467","sku":"XXP-969050","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682037299 -> [{\"id\":\"gid://shopify/ProductVariant/41353951445043\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802229436467\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:56.175Z","pid":"6936682070067","gid":"gid://shopify/Product/6936682070067","order_before":[{"id":"gid://shopify/ProductVariant/41353951477811","sku":"XXP-969051-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802229731379","sku":"XXP-969051","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682070067 -> [{\"id\":\"gid://shopify/ProductVariant/41353951477811\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802229731379\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:57.795Z","pid":"6936682102835","gid":"gid://shopify/Product/6936682102835","order_before":[{"id":"gid://shopify/ProductVariant/41353951510579","sku":"XXP-969052-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802229927987","sku":"XXP-969052","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682102835 -> [{\"id\":\"gid://shopify/ProductVariant/41353951510579\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802229927987\",\"position\":2}]"}
+{"ts":"2026-09-09T20:17:59.323Z","pid":"6936682135603","gid":"gid://shopify/Product/6936682135603","order_before":[{"id":"gid://shopify/ProductVariant/41353951543347","sku":"XXP-969053-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802230124595","sku":"XXP-969053","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682135603 -> [{\"id\":\"gid://shopify/ProductVariant/41353951543347\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802230124595\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:00.951Z","pid":"6936682299443","gid":"gid://shopify/Product/6936682299443","order_before":[{"id":"gid://shopify/ProductVariant/41353951903795","sku":"XXP-969054-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802230386739","sku":"XXP-969054","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682299443 -> [{\"id\":\"gid://shopify/ProductVariant/41353951903795\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802230386739\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:02.577Z","pid":"6936682332211","gid":"gid://shopify/Product/6936682332211","order_before":[{"id":"gid://shopify/ProductVariant/41353951936563","sku":"XXP-969055-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802244804659","sku":"XXP-969055","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682332211 -> [{\"id\":\"gid://shopify/ProductVariant/41353951936563\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802244804659\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:04.105Z","pid":"6936682364979","gid":"gid://shopify/Product/6936682364979","order_before":[{"id":"gid://shopify/ProductVariant/41353951969331","sku":"XXP-969056-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802245034035","sku":"XXP-969056","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682364979 -> [{\"id\":\"gid://shopify/ProductVariant/41353951969331\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802245034035\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:05.609Z","pid":"6936682397747","gid":"gid://shopify/Product/6936682397747","order_before":[{"id":"gid://shopify/ProductVariant/41353952002099","sku":"XXP-969057-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802245230643","sku":"XXP-969057","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682397747 -> [{\"id\":\"gid://shopify/ProductVariant/41353952002099\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802245230643\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:07.112Z","pid":"6936682430515","gid":"gid://shopify/Product/6936682430515","order_before":[{"id":"gid://shopify/ProductVariant/41353952034867","sku":"XXP-969058-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802245460019","sku":"XXP-969058","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682430515 -> [{\"id\":\"gid://shopify/ProductVariant/41353952034867\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802245460019\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:08.647Z","pid":"6936682463283","gid":"gid://shopify/Product/6936682463283","order_before":[{"id":"gid://shopify/ProductVariant/41353952067635","sku":"XXP-969059-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802245689395","sku":"XXP-969059","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936682463283 -> [{\"id\":\"gid://shopify/ProductVariant/41353952067635\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802245689395\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:10.200Z","pid":"6936683020339","gid":"gid://shopify/Product/6936683020339","order_before":[{"id":"gid://shopify/ProductVariant/41353952722995","sku":"XXP-969073-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802245886003","sku":"XXP-969073","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683020339 -> [{\"id\":\"gid://shopify/ProductVariant/41353952722995\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802245886003\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:11.700Z","pid":"6936683053107","gid":"gid://shopify/Product/6936683053107","order_before":[{"id":"gid://shopify/ProductVariant/41353952755763","sku":"XXP-969074-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802246115379","sku":"XXP-969074","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683053107 -> [{\"id\":\"gid://shopify/ProductVariant/41353952755763\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802246115379\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:13.588Z","pid":"6936683085875","gid":"gid://shopify/Product/6936683085875","order_before":[{"id":"gid://shopify/ProductVariant/41353952788531","sku":"XXP-969075-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802246279219","sku":"XXP-969075","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683085875 -> [{\"id\":\"gid://shopify/ProductVariant/41353952788531\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802246279219\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:15.493Z","pid":"6936683118643","gid":"gid://shopify/Product/6936683118643","order_before":[{"id":"gid://shopify/ProductVariant/41353952821299","sku":"XXP-969076-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802246508595","sku":"XXP-969076","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683118643 -> [{\"id\":\"gid://shopify/ProductVariant/41353952821299\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802246508595\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:17.223Z","pid":"6936683151411","gid":"gid://shopify/Product/6936683151411","order_before":[{"id":"gid://shopify/ProductVariant/41353952854067","sku":"XXP-969077-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802246836275","sku":"XXP-969077","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683151411 -> [{\"id\":\"gid://shopify/ProductVariant/41353952854067\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802246836275\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:18.716Z","pid":"6936683184179","gid":"gid://shopify/Product/6936683184179","order_before":[{"id":"gid://shopify/ProductVariant/41353952886835","sku":"XXP-969078-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802247065651","sku":"XXP-969078","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683184179 -> [{\"id\":\"gid://shopify/ProductVariant/41353952886835\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802247065651\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:20.271Z","pid":"6936683216947","gid":"gid://shopify/Product/6936683216947","order_before":[{"id":"gid://shopify/ProductVariant/41353952919603","sku":"XXP-969079-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802247295027","sku":"XXP-969079","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683216947 -> [{\"id\":\"gid://shopify/ProductVariant/41353952919603\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802247295027\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:21.841Z","pid":"6936683249715","gid":"gid://shopify/Product/6936683249715","order_before":[{"id":"gid://shopify/ProductVariant/41353952952371","sku":"XXP-969080-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802247557171","sku":"XXP-969080","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683249715 -> [{\"id\":\"gid://shopify/ProductVariant/41353952952371\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802247557171\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:23.610Z","pid":"6936683315251","gid":"gid://shopify/Product/6936683315251","order_before":[{"id":"gid://shopify/ProductVariant/41353953083443","sku":"XXP-969081-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802247819315","sku":"XXP-969081","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683315251 -> [{\"id\":\"gid://shopify/ProductVariant/41353953083443\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802247819315\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:25.179Z","pid":"6936683348019","gid":"gid://shopify/Product/6936683348019","order_before":[{"id":"gid://shopify/ProductVariant/41353953116211","sku":"XXP-969082-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248081459","sku":"XXP-969082","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683348019 -> [{\"id\":\"gid://shopify/ProductVariant/41353953116211\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248081459\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:26.877Z","pid":"6936683380787","gid":"gid://shopify/Product/6936683380787","order_before":[{"id":"gid://shopify/ProductVariant/41353953148979","sku":"XXP-969083-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248310835","sku":"XXP-969083","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683380787 -> [{\"id\":\"gid://shopify/ProductVariant/41353953148979\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248310835\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:28.412Z","pid":"6936683413555","gid":"gid://shopify/Product/6936683413555","order_before":[{"id":"gid://shopify/ProductVariant/41353953181747","sku":"XXP-969084-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248474675","sku":"XXP-969084","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683413555 -> [{\"id\":\"gid://shopify/ProductVariant/41353953181747\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248474675\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:29.899Z","pid":"6936683446323","gid":"gid://shopify/Product/6936683446323","order_before":[{"id":"gid://shopify/ProductVariant/41353953214515","sku":"XXP-969085-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248671283","sku":"XXP-969085","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683446323 -> [{\"id\":\"gid://shopify/ProductVariant/41353953214515\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248671283\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:31.509Z","pid":"6936683511859","gid":"gid://shopify/Product/6936683511859","order_before":[{"id":"gid://shopify/ProductVariant/41353953280051","sku":"XXP-969086-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248867891","sku":"XXP-969086","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683511859 -> [{\"id\":\"gid://shopify/ProductVariant/41353953280051\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248867891\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:33.074Z","pid":"6936683544627","gid":"gid://shopify/Product/6936683544627","order_before":[{"id":"gid://shopify/ProductVariant/41353953312819","sku":"XXP-969087-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802248998963","sku":"XXP-969087","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683544627 -> [{\"id\":\"gid://shopify/ProductVariant/41353953312819\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802248998963\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:34.663Z","pid":"6936683577395","gid":"gid://shopify/Product/6936683577395","order_before":[{"id":"gid://shopify/ProductVariant/41353953345587","sku":"XXP-969088-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249064499","sku":"XXP-969088","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683577395 -> [{\"id\":\"gid://shopify/ProductVariant/41353953345587\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249064499\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:36.188Z","pid":"6936683610163","gid":"gid://shopify/Product/6936683610163","order_before":[{"id":"gid://shopify/ProductVariant/41353953378355","sku":"XXP-969089-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249097267","sku":"XXP-969089","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683610163 -> [{\"id\":\"gid://shopify/ProductVariant/41353953378355\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249097267\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:37.672Z","pid":"6936683642931","gid":"gid://shopify/Product/6936683642931","order_before":[{"id":"gid://shopify/ProductVariant/41353953411123","sku":"XXP-969090-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249130035","sku":"XXP-969090","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683642931 -> [{\"id\":\"gid://shopify/ProductVariant/41353953411123\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249130035\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:40.292Z","pid":"6936683675699","gid":"gid://shopify/Product/6936683675699","order_before":[{"id":"gid://shopify/ProductVariant/41353953443891","sku":"XXP-969091-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249293875","sku":"XXP-969091","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683675699 -> [{\"id\":\"gid://shopify/ProductVariant/41353953443891\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249293875\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:41.829Z","pid":"6936683708467","gid":"gid://shopify/Product/6936683708467","order_before":[{"id":"gid://shopify/ProductVariant/41353953476659","sku":"XXP-969092-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249523251","sku":"XXP-969092","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683708467 -> [{\"id\":\"gid://shopify/ProductVariant/41353953476659\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249523251\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:43.316Z","pid":"6936683774003","gid":"gid://shopify/Product/6936683774003","order_before":[{"id":"gid://shopify/ProductVariant/41353953640499","sku":"XXP-969093-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249719859","sku":"XXP-969093","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683774003 -> [{\"id\":\"gid://shopify/ProductVariant/41353953640499\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249719859\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:44.880Z","pid":"6936683806771","gid":"gid://shopify/Product/6936683806771","order_before":[{"id":"gid://shopify/ProductVariant/41353953673267","sku":"XXP-969094-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802249883699","sku":"XXP-969094","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683806771 -> [{\"id\":\"gid://shopify/ProductVariant/41353953673267\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802249883699\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:46.457Z","pid":"6936683839539","gid":"gid://shopify/Product/6936683839539","order_before":[{"id":"gid://shopify/ProductVariant/41353953706035","sku":"XXP-969095-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802250113075","sku":"XXP-969095","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683839539 -> [{\"id\":\"gid://shopify/ProductVariant/41353953706035\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802250113075\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:48.013Z","pid":"6936683872307","gid":"gid://shopify/Product/6936683872307","order_before":[{"id":"gid://shopify/ProductVariant/41353953738803","sku":"XXP-969096-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802250276915","sku":"XXP-969096","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683872307 -> [{\"id\":\"gid://shopify/ProductVariant/41353953738803\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802250276915\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:49.491Z","pid":"6936683937843","gid":"gid://shopify/Product/6936683937843","order_before":[{"id":"gid://shopify/ProductVariant/41353953804339","sku":"XXP-969097-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802250473523","sku":"XXP-969097","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683937843 -> [{\"id\":\"gid://shopify/ProductVariant/41353953804339\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802250473523\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:51.019Z","pid":"6936683970611","gid":"gid://shopify/Product/6936683970611","order_before":[{"id":"gid://shopify/ProductVariant/41353953837107","sku":"XXP-969098-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802250768435","sku":"XXP-969098","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936683970611 -> [{\"id\":\"gid://shopify/ProductVariant/41353953837107\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802250768435\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:52.500Z","pid":"6936684036147","gid":"gid://shopify/Product/6936684036147","order_before":[{"id":"gid://shopify/ProductVariant/41353953935411","sku":"XXP-969099-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802250965043","sku":"XXP-969099","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684036147 -> [{\"id\":\"gid://shopify/ProductVariant/41353953935411\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802250965043\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:54.008Z","pid":"6936684101683","gid":"gid://shopify/Product/6936684101683","order_before":[{"id":"gid://shopify/ProductVariant/41353954000947","sku":"XXP-969100-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802251161651","sku":"XXP-969100","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684101683 -> [{\"id\":\"gid://shopify/ProductVariant/41353954000947\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802251161651\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:56.728Z","pid":"6936684134451","gid":"gid://shopify/Product/6936684134451","order_before":[{"id":"gid://shopify/ProductVariant/41353954033715","sku":"XXP-969101-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802251391027","sku":"XXP-969101","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684134451 -> [{\"id\":\"gid://shopify/ProductVariant/41353954033715\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802251391027\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:58.217Z","pid":"6936684167219","gid":"gid://shopify/Product/6936684167219","order_before":[{"id":"gid://shopify/ProductVariant/41353954066483","sku":"XXP-969102-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802251620403","sku":"XXP-969102","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684167219 -> [{\"id\":\"gid://shopify/ProductVariant/41353954066483\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802251620403\",\"position\":2}]"}
+{"ts":"2026-09-09T20:18:59.766Z","pid":"6936684199987","gid":"gid://shopify/Product/6936684199987","order_before":[{"id":"gid://shopify/ProductVariant/41353954099251","sku":"XXP-969103-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802251817011","sku":"XXP-969103","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684199987 -> [{\"id\":\"gid://shopify/ProductVariant/41353954099251\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802251817011\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:01.326Z","pid":"6936684265523","gid":"gid://shopify/Product/6936684265523","order_before":[{"id":"gid://shopify/ProductVariant/41353954197555","sku":"XXP-969104-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802251980851","sku":"XXP-969104","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684265523 -> [{\"id\":\"gid://shopify/ProductVariant/41353954197555\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802251980851\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:02.947Z","pid":"6936684298291","gid":"gid://shopify/Product/6936684298291","order_before":[{"id":"gid://shopify/ProductVariant/41353954230323","sku":"XXP-969105-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802252177459","sku":"XXP-969105","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684298291 -> [{\"id\":\"gid://shopify/ProductVariant/41353954230323\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802252177459\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:04.449Z","pid":"6936684363827","gid":"gid://shopify/Product/6936684363827","order_before":[{"id":"gid://shopify/ProductVariant/41353954295859","sku":"XXP-969106-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802252406835","sku":"XXP-969106","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684363827 -> [{\"id\":\"gid://shopify/ProductVariant/41353954295859\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802252406835\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:06.056Z","pid":"6936684396595","gid":"gid://shopify/Product/6936684396595","order_before":[{"id":"gid://shopify/ProductVariant/41353954394163","sku":"XXP-969107-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802252603443","sku":"XXP-969107","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684396595 -> [{\"id\":\"gid://shopify/ProductVariant/41353954394163\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802252603443\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:07.686Z","pid":"6936684462131","gid":"gid://shopify/Product/6936684462131","order_before":[{"id":"gid://shopify/ProductVariant/41353954426931","sku":"XXP-969108-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802252734515","sku":"XXP-969108","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684462131 -> [{\"id\":\"gid://shopify/ProductVariant/41353954426931\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802252734515\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:09.254Z","pid":"6936684494899","gid":"gid://shopify/Product/6936684494899","order_before":[{"id":"gid://shopify/ProductVariant/41353954459699","sku":"XXP-969109-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802252931123","sku":"XXP-969109","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684494899 -> [{\"id\":\"gid://shopify/ProductVariant/41353954459699\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802252931123\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:10.835Z","pid":"6936684527667","gid":"gid://shopify/Product/6936684527667","order_before":[{"id":"gid://shopify/ProductVariant/41353954492467","sku":"XXP-969110-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802253160499","sku":"XXP-969110","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684527667 -> [{\"id\":\"gid://shopify/ProductVariant/41353954492467\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802253160499\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:12.368Z","pid":"6936684593203","gid":"gid://shopify/Product/6936684593203","order_before":[{"id":"gid://shopify/ProductVariant/41353954590771","sku":"XXP-969111-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802253357107","sku":"XXP-969111","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684593203 -> [{\"id\":\"gid://shopify/ProductVariant/41353954590771\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802253357107\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:13.896Z","pid":"6936684625971","gid":"gid://shopify/Product/6936684625971","order_before":[{"id":"gid://shopify/ProductVariant/41353954623539","sku":"XXP-969112-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802253553715","sku":"XXP-969112","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684625971 -> [{\"id\":\"gid://shopify/ProductVariant/41353954623539\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802253553715\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:15.368Z","pid":"6936684658739","gid":"gid://shopify/Product/6936684658739","order_before":[{"id":"gid://shopify/ProductVariant/41353954656307","sku":"XXP-969113-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802253815859","sku":"XXP-969113","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684658739 -> [{\"id\":\"gid://shopify/ProductVariant/41353954656307\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802253815859\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:16.903Z","pid":"6936684691507","gid":"gid://shopify/Product/6936684691507","order_before":[{"id":"gid://shopify/ProductVariant/41353954689075","sku":"XXP-969114-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254110771","sku":"XXP-969114","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684691507 -> [{\"id\":\"gid://shopify/ProductVariant/41353954689075\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254110771\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:18.491Z","pid":"6936684724275","gid":"gid://shopify/Product/6936684724275","order_before":[{"id":"gid://shopify/ProductVariant/41353954721843","sku":"XXP-969115-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254340147","sku":"XXP-969115","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684724275 -> [{\"id\":\"gid://shopify/ProductVariant/41353954721843\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254340147\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:20.082Z","pid":"6936684757043","gid":"gid://shopify/Product/6936684757043","order_before":[{"id":"gid://shopify/ProductVariant/41353954754611","sku":"XXP-969116-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254503987","sku":"XXP-969116","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684757043 -> [{\"id\":\"gid://shopify/ProductVariant/41353954754611\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254503987\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:21.674Z","pid":"6936684789811","gid":"gid://shopify/Product/6936684789811","order_before":[{"id":"gid://shopify/ProductVariant/41353954787379","sku":"XXP-969117-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254667827","sku":"XXP-969117","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684789811 -> [{\"id\":\"gid://shopify/ProductVariant/41353954787379\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254667827\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:23.192Z","pid":"6936684855347","gid":"gid://shopify/Product/6936684855347","order_before":[{"id":"gid://shopify/ProductVariant/41353954852915","sku":"XXP-969118-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254864435","sku":"XXP-969118","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684855347 -> [{\"id\":\"gid://shopify/ProductVariant/41353954852915\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254864435\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:24.732Z","pid":"6936684888115","gid":"gid://shopify/Product/6936684888115","order_before":[{"id":"gid://shopify/ProductVariant/41353954885683","sku":"XXP-969119-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254962739","sku":"XXP-969119","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684888115 -> [{\"id\":\"gid://shopify/ProductVariant/41353954885683\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254962739\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:26.328Z","pid":"6936684920883","gid":"gid://shopify/Product/6936684920883","order_before":[{"id":"gid://shopify/ProductVariant/41353954918451","sku":"XXP-969120-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802254995507","sku":"XXP-969120","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684920883 -> [{\"id\":\"gid://shopify/ProductVariant/41353954918451\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802254995507\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:27.917Z","pid":"6936684953651","gid":"gid://shopify/Product/6936684953651","order_before":[{"id":"gid://shopify/ProductVariant/41353954951219","sku":"XXP-969121-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255028275","sku":"XXP-969121","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684953651 -> [{\"id\":\"gid://shopify/ProductVariant/41353954951219\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255028275\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:30.265Z","pid":"6936684986419","gid":"gid://shopify/Product/6936684986419","order_before":[{"id":"gid://shopify/ProductVariant/41353954983987","sku":"XXP-969122-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255192115","sku":"XXP-969122","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936684986419 -> [{\"id\":\"gid://shopify/ProductVariant/41353954983987\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255192115\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:31.927Z","pid":"6936685019187","gid":"gid://shopify/Product/6936685019187","order_before":[{"id":"gid://shopify/ProductVariant/41353955016755","sku":"XXP-969123-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255388723","sku":"XXP-969123","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936685019187 -> [{\"id\":\"gid://shopify/ProductVariant/41353955016755\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255388723\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:33.504Z","pid":"6936685051955","gid":"gid://shopify/Product/6936685051955","order_before":[{"id":"gid://shopify/ProductVariant/41353955049523","sku":"XXP-969124-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255552563","sku":"XXP-969124","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936685051955 -> [{\"id\":\"gid://shopify/ProductVariant/41353955049523\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255552563\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:35.066Z","pid":"6936685084723","gid":"gid://shopify/Product/6936685084723","order_before":[{"id":"gid://shopify/ProductVariant/41353955082291","sku":"XXP-969125-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255814707","sku":"XXP-969125","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936685084723 -> [{\"id\":\"gid://shopify/ProductVariant/41353955082291\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255814707\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:36.710Z","pid":"6936685117491","gid":"gid://shopify/Product/6936685117491","order_before":[{"id":"gid://shopify/ProductVariant/41353955115059","sku":"XXP-969126-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802255978547","sku":"XXP-969126","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936685117491 -> [{\"id\":\"gid://shopify/ProductVariant/41353955115059\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802255978547\",\"position\":2}]"}
+{"ts":"2026-09-09T20:19:39.407Z","pid":"6936685150259","gid":"gid://shopify/Product/6936685150259","order_before":[{"id":"gid://shopify/ProductVariant/41353955147827","sku":"XXP-969127-Sample","position":1},{"id":"gid://shopify/ProductVariant/44802256273459","sku":"XXP-969127","position":2}],"undo":"productVariantsBulkReorder gid://shopify/Product/6936685150259 -> [{\"id\":\"gid://shopify/ProductVariant/41353955147827\",\"position\":1},{\"id\":\"gid://shopify/ProductVariant/44802256273459\",\"position\":2}]"}
diff --git a/verify_one.mjs b/verify_one.mjs
new file mode 100644
index 0000000..1dd9d21
--- /dev/null
+++ b/verify_one.mjs
@@ -0,0 +1,4 @@
+import {gql} from './lib.mjs';
+const id=process.argv[2];
+const d=await gql(`query($id:ID!){product(id:$id){variants(first:5){nodes{sku position price}}}}`,{id});
+console.log(JSON.stringify(d.product.variants.nodes.sort((a,b)=>a.position-b.position)));
← 51e4dab TK-11331 exec scaffold: enum + D1 reorder + D2 metafields (v
·
back to Tk 11331 Exec
·
auto-data-snapshot: 2026-09-09T13:23:51 (1 data files) — dat d8a2e55 →