[object Object]

← back to Carnegie Identity Audit

Add approved bounded repair and independently verified canary rollback

54fc24b2e7d4197eedd90d18f766a4dea730f9a8 · 2026-09-11 10:32:10 -0700 · Steve Abrams

Files touched

Diff

commit 54fc24b2e7d4197eedd90d18f766a4dea730f9a8
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Sep 11 10:32:10 2026 -0700

    Add approved bounded repair and independently verified canary rollback
---
 .gitignore                                         |     2 +
 README.md                                          |    10 +-
 __pycache__/collect.cpython-314.pyc                |   Bin 9688 -> 0 bytes
 execute.py                                         |   189 +
 execution-20260911/actions.jsonl                   |    58 +
 execution-20260911/drift-current.json              | 19602 ++++++++++++++++++
 execution-20260911/independent-canary.json         |   321 +
 .../independent-rollback-canary.json               |   321 +
 execution-20260911/products-baseline.json          | 19764 +++++++++++++++++++
 execution-20260911/source-proof.json               |    23 +
 execution-20260911/stale-digest-response.json      |    21 +
 execution-20260911/stale-digest-test.json          |    25 +
 verify_live.py                                     |    65 +
 13 files changed, 40399 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1924158..0ae120f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,5 @@ tmp/
 dist/
 build/
 .next/
+__pycache__/
+*.pyc
diff --git a/README.md b/README.md
index e1bb1a5..d64502f 100644
--- a/README.md
+++ b/README.md
@@ -2,11 +2,17 @@
 
 Read-only reconstruction of the 26 Carnegie Siltech Grain manufacturer-SKU
 changes recorded on August 18, 2026. Category suffixes distinguish products;
-never strip them table-wide. No write runner is included.
+never strip them table-wide.
 
 The collector reads historical IDs, finds current products by exact variant SKU,
 captures both manufacturer_sku namespaces, and reads staging in a PostgreSQL
 read-only transaction. Shopify credentials are loaded in memory from the existing
 registry and never emitted. Execution requires network/local database access.
 
-All catalog corrections require explicit approval. Evidence is not authorization.
+Steve explicitly authorized the scoped repair on September 11: "ungate and run".
+`execute.py` contains phased preflight, transactional database repair, canary,
+compare-and-set metafield repair, rollback rehearsal, and idempotent retries.
+`verify_live.py` independently reads REST and SQL, asserting corrected identities
+and unchanged prices, product properties, other metafields and excluded products.
+The original preparation remains in `verification/`; execution evidence is in
+`execution-20260911/`. Approval applies only to the exact IDs in repair-plan.json.
diff --git a/__pycache__/collect.cpython-314.pyc b/__pycache__/collect.cpython-314.pyc
deleted file mode 100644
index be26ed0..0000000
Binary files a/__pycache__/collect.cpython-314.pyc and /dev/null differ
diff --git a/execute.py b/execute.py
new file mode 100644
index 0000000..878b0df
--- /dev/null
+++ b/execute.py
@@ -0,0 +1,189 @@
+#!/usr/bin/env python3
+"""TK-11246 approved bounded repair. Explicit phases, durable prestate, CAS."""
+import argparse, copy, datetime, hashlib, json, os, pathlib, subprocess, time, urllib.request
+import collect
+
+BASE=pathlib.Path(__file__).resolve().parent
+RUN=BASE/'execution-20260911'
+RUN.mkdir(exist_ok=True)
+PLAN=json.loads((BASE/'verification/repair-plan.json').read_text())
+PRODUCTS={p['id']:(r,p) for r in PLAN['rows'] for p in r['products']}
+EXCLUDED={r['excluded_grouped_product'] for r in PLAN['rows']}
+FIELDS='''id title handle vendor status tags descriptionHtml productType
+variants(first:100){pageInfo{hasNextPage} nodes{id sku title price compareAtPrice}}
+metafields(first:250){pageInfo{hasNextPage} nodes{id namespace key type value compareDigest}}'''
+SET='mutation Repair($m:[MetafieldsSetInput!]!){metafieldsSet(metafields:$m){metafields{id namespace key value compareDigest} userErrors{field message code}}}'
+def now():return datetime.datetime.now(datetime.timezone.utc).isoformat()
+def save(name,data):
+    path=RUN/name
+    with path.open('w') as f:
+        json.dump(data,f,indent=2);f.write('\n');f.flush();os.fsync(f.fileno())
+def read(name):return json.loads((RUN/name).read_text())
+def product_baseline():
+    return read('products-baseline.json')['products'] if (RUN/'products-baseline.json').exists() else read('preflight.json')['products']
+def log(event,**data):
+    with (RUN/'actions.jsonl').open('a') as f:
+        f.write(json.dumps(dict(ts=now(),event=event,**data))+'\n');f.flush();os.fsync(f.fileno())
+def sql(query,write=False):
+    env=dict(os.environ,PGOPTIONS=f'-c default_transaction_read_only={"off" if write else "on"} -c statement_timeout=15000 -c lock_timeout=5000',PGCONNECT_TIMEOUT='3')
+    r=subprocess.run(['psql','-X','-q','-d','dw_unified','-At','-v','ON_ERROR_STOP=1'],input=query,text=True,capture_output=True,env=env)
+    if r.returncode:raise RuntimeError(r.stderr)
+    return r.stdout.strip()
+def canonical():
+    q="SELECT json_build_object('read_only',current_setting('default_transaction_read_only'),'rows',(SELECT json_agg(t) FROM (SELECT id,dw_sku,mfr_sku FROM carnegie_catalog WHERE dw_sku BETWEEN 'DWAG-379296' AND 'DWAG-379321' ORDER BY dw_sku) t));"
+    cmd="PGOPTIONS='-c default_transaction_read_only=on -c statement_timeout=5000' psql -d dw_unified -At -c "+"'"+q.replace("'","'\"'\"'")+"'"
+    r=subprocess.run(['ssh','-o','BatchMode=yes','-o','ConnectTimeout=8','kamatera',cmd],capture_output=True,text=True,check=True)
+    data=json.loads(r.stdout);assert data['read_only']=='on'
+    assert {(r['id'],r['dw_sku'],r['mfr_sku']) for r in data['rows']}=={(r['catalog_id'],r['dw_sku'],r['after']) for r in PLAN['rows']}
+    return data
+def fetch_products(ids):
+    output={}
+    for i in range(0,len(ids),4):
+        batch=ids[i:i+4]
+        d=collect.gql('query Read($ids:[ID!]!){nodes(ids:$ids){... on Product{'+FIELDS+'}}}',{'ids':batch})
+        assert len(d['nodes'])==len(batch)
+        for pid,p in zip(batch,d['nodes']):
+            assert p and p['id']==pid
+            assert not p['variants']['pageInfo']['hasNextPage'] and not p['metafields']['pageInfo']['hasNextPage']
+            output[pid]=p
+        time.sleep(.4)
+    return output
+def mfmap(p):return {(m['namespace'],m['key']):m for m in p['metafields']['nodes']}
+def stable(p):
+    p=copy.deepcopy(p)
+    p['metafields']['nodes']=[{k:v for k,v in m.items() if k!='compareDigest'} for m in p['metafields']['nodes'] if (m['namespace'],m['key']) not in {('custom','manufacturer_sku'),('dwc','manufacturer_sku')}]
+    p['metafields']['nodes'].sort(key=lambda m:m['id'])
+    p['variants']['nodes'].sort(key=lambda v:v['id'])
+    p['tags'].sort()
+    return p
+def assert_product(pid,p,expected):
+    r,planned=PRODUCTS[pid]
+    assert p['vendor']=='Carnegie' and p['status']==planned['status'] and p['handle']==planned['handle']
+    real=[v for v in p['variants']['nodes'] if 'sample' not in v['sku'].lower()]
+    assert len(real)==1 and real[0]['sku']==r['dw_sku'] and real[0]['id']==planned['variant_id']
+    m=mfmap(p)
+    for field in planned['metafields']:
+        live=m[(field['namespace'],field['key'])]
+        assert live['id']==field['id'] and live['type']==field['type'] and live['value']==r[expected]
+        assert live['compareDigest']
+def db_state():
+    return json.loads(sql("SELECT json_build_object('rows',(SELECT json_agg(t) FROM (SELECT * FROM carnegie_catalog WHERE dw_sku BETWEEN 'DWAG-379296' AND 'DWAG-379321' ORDER BY dw_sku) t),'count',(SELECT count(*) FROM carnegie_catalog),'distinct',(SELECT count(DISTINCT mfr_sku) FROM carnegie_catalog),'other_digest',(SELECT md5(string_agg(id::text||':'||dw_sku||':'||mfr_sku,'|' ORDER BY id)) FROM carnegie_catalog WHERE dw_sku NOT BETWEEN 'DWAG-379296' AND 'DWAG-379321'));"))
+def preflight():
+    assert not (RUN/'preflight.json').exists(), 'Do not overwrite durable prestate'
+    c=canonical(); db=db_state()
+    assert db['count']==db['distinct']==5928
+    local={r['dw_sku']:r for r in db['rows']}
+    assert len(local)==26
+    for r in PLAN['rows']:
+        assert local[r['dw_sku']]['id']==r['catalog_id'] and local[r['dw_sku']]['mfr_sku']==r['before']
+    products=fetch_products(list(PRODUCTS)+list(EXCLUDED))
+    for pid in PRODUCTS:assert_product(pid,products[pid],'before')
+    for pid in EXCLUDED:
+        assert products[pid]['status']=='ARCHIVED'
+        assert not any(k in mfmap(products[pid]) for k in [('custom','manufacturer_sku'),('dwc','manufacturer_sku')])
+    for r in PLAN['rows']:
+        d=collect.gql('query Identity($q:String!){productVariants(first:100,query:$q){pageInfo{hasNextPage} nodes{sku product{id status}}}}',{'q':'sku:'+r['dw_sku']})['productVariants']
+        assert not d['pageInfo']['hasNextPage']
+        exact={v['product']['id'] for v in d['nodes'] if v['sku']==r['dw_sku']}
+        assert exact=={p['id'] for p in r['products']}|EXCLUDED
+        time.sleep(.25)
+    save('preflight.json',dict(at=now(),canonical=c,database=db,products=products,approval='Steve: ungate and run',plan_sha256=hashlib.sha256((BASE/'verification/repair-plan.json').read_bytes()).hexdigest()))
+    log('preflight_pass',rows=26,products=52,metafields=104);print('Preflight PASS: exact26/52/104; grouped generation excluded',flush=True)
+def db_script(reverse=False,end='ROLLBACK'):
+    # IDs and values come only from the approved immutable plan; quote literals.
+    quote=lambda x:"'"+str(x).replace("'","''")+"'"
+    values=','.join(f"({r['catalog_id']},{quote(r['dw_sku'])},{quote(r['after'] if reverse else r['before'])},{quote(r['before'] if reverse else r['after'])})" for r in PLAN['rows'])
+    return f'''BEGIN;
+LOCK TABLE carnegie_catalog IN SHARE ROW EXCLUSIVE MODE;
+CREATE TEMP TABLE repair_expected(id int,sku text,before text,after text) ON COMMIT DROP;
+INSERT INTO repair_expected VALUES {values};
+DO $$ BEGIN
+IF (SELECT count(*) FROM carnegie_catalog c JOIN repair_expected e ON c.id=e.id AND c.dw_sku=e.sku AND c.mfr_sku=e.before)<>26 THEN RAISE EXCEPTION 'prestate mismatch'; END IF;
+END $$;
+UPDATE carnegie_catalog c SET mfr_sku=e.after FROM repair_expected e WHERE c.id=e.id AND c.dw_sku=e.sku AND c.mfr_sku=e.before;
+DO $$ BEGIN
+IF (SELECT count(*) FROM carnegie_catalog c JOIN repair_expected e ON c.id=e.id AND c.dw_sku=e.sku AND c.mfr_sku=e.after)<>26 THEN RAISE EXCEPTION 'poststate mismatch'; END IF;
+IF (SELECT count(*)=count(DISTINCT mfr_sku) FROM carnegie_catalog) IS NOT TRUE THEN RAISE EXCEPTION 'identity collision'; END IF;
+END $$;
+SELECT 'verified26';
+{end};'''
+def apply_db(rehearse=False):
+    baseline=read('preflight.json')['database']
+    assert db_state()==baseline, 'Database drift after preflight'
+    canonical()
+    script=db_script(end='ROLLBACK' if rehearse else 'COMMIT')
+    # Rollback rehearsal includes the actual reverse update within same transaction.
+    if rehearse:
+        script=script.replace("SELECT 'verified26';", "UPDATE carnegie_catalog c SET mfr_sku=e.before FROM repair_expected e WHERE c.id=e.id AND c.dw_sku=e.sku AND c.mfr_sku=e.after;\nSELECT 'verified26-and-reversed';")
+    (RUN/('database-rehearsal.sql' if rehearse else 'database-apply.sql')).write_text(script)
+    out=sql(script,write=True)
+    state=db_state();save('database-rehearsal-after.json' if rehearse else 'database-after.json',state)
+    if rehearse:assert state==baseline
+    else:
+        assert state['count']==state['distinct']==5928 and state['other_digest']==baseline['other_digest']
+        assert {r['mfr_sku'] for r in state['rows']}=={r['after'] for r in PLAN['rows']}
+    (RUN/'database-rollback.sql').write_text(db_script(reverse=True,end='COMMIT'))
+    log('database_rehearsal_pass' if rehearse else 'database_apply_pass',result=out);print(out,flush=True)
+def mutate(fields,expect_rejection=False):
+    assert len(fields)==2 and {f['namespace'] for f in fields}=={'custom','dwc'}
+    assert all(f['ownerId'] in PRODUCTS and f['key']=='manufacturer_sku' and f['compareDigest'] for f in fields)
+    assert len({f['ownerId'] for f in fields})==1
+    assert all(f['value'] in {PRODUCTS[f['ownerId']][0]['before'],PRODUCTS[f['ownerId']][0]['after']} for f in fields)
+    req=urllib.request.Request('https://designer-laboratory-sandbox.myshopify.com/admin/api/2026-07/graphql.json',data=json.dumps({'query':SET,'variables':{'m':fields}}).encode(),headers={'X-Shopify-Access-Token':collect.TOKEN,'Content-Type':'application/json'})
+    with urllib.request.urlopen(req,timeout=35) as response:result=json.load(response)
+    assert not result.get('errors'),result.get('errors')
+    payload=result['data']['metafieldsSet']
+    if expect_rejection:
+        save('stale-digest-response.json',payload)
+        assert payload['userErrors'] and not payload.get('metafields'), 'Stale digest was not rejected'
+        return payload
+    assert not payload['userErrors'],payload['userErrors']
+    return payload
+def repair_product(pid,reverse=False):
+    baseline=product_baseline()[pid]
+    r,plan=PRODUCTS[pid];fresh=fetch_products([pid])[pid]
+    assert stable(fresh)==stable(baseline),'Unrelated product drift'
+    m=mfmap(fresh)
+    source,target=('after','before') if reverse else ('before','after')
+    if all(m[(ns,'manufacturer_sku')]['value']==r[target] for ns in ['custom','dwc']):
+        assert_product(pid,fresh,target);log('idempotent_skip',id=pid,reverse=reverse);return
+    assert_product(pid,fresh,source)
+    fields=[dict(ownerId=pid,namespace=ns,key='manufacturer_sku',type=m[(ns,'manufacturer_sku')]['type'],value=r[target],compareDigest=m[(ns,'manufacturer_sku')]['compareDigest']) for ns in ['custom','dwc']]
+    log('mutation_intent',id=pid,fields=fields)
+    result=mutate(fields);log('mutation_ack',id=pid,result=result)
+    after=fetch_products([pid])[pid];assert_product(pid,after,target)
+    assert stable(after)==stable(baseline)
+    log('product_verified',id=pid,reverse=reverse);print('Verified '+pid,flush=True)
+def shopify(phase):
+    assert (RUN/'database-after.json').exists(), 'Database must be repaired first'
+    for name in ['rollout.mjs','rollout2.mjs','build-siltech-grain-v2-archived.mjs']:
+        assert 'const cleanMfr = s => String(s); // Preserve category-bearing manufacturer identity (TK-11246).' in (BASE.parent/'carnegie-split'/name).read_text()
+    canary=next(pid for pid,(_,p) in PRODUCTS.items() if p['status']=='ACTIVE')
+    if phase in ['canary','rollback-canary']:repair_product(canary,reverse=phase=='rollback-canary')
+    elif phase=='stale-digest-test':
+        r,p=PRODUCTS[canary];before=read('preflight.json')['products'][canary]
+        m=mfmap(before)
+        fields=[dict(ownerId=canary,namespace=ns,key='manufacturer_sku',type=m[(ns,'manufacturer_sku')]['type'],value=r['before'],compareDigest=m[(ns,'manufacturer_sku')]['compareDigest']) for ns in ['custom','dwc']]
+        current=fetch_products([canary])[canary];assert_product(canary,current,'after')
+        result=mutate(fields,expect_rejection=True)
+        assert fetch_products([canary])[canary]==current
+        save('stale-digest-test.json',dict(verdict='PASS',response=result,product_unchanged=True));log('stale_digest_rejected',id=canary)
+    else:
+        assert read('independent-canary.json')['verdict']=='PASS','Independent canary must pass'
+        for pid in PRODUCTS:
+            repair_product(pid);time.sleep(.7)
+def main():
+    p=argparse.ArgumentParser();p.add_argument('phase',choices=['preflight','inspect','rehearse','database','canary','rollback-canary','stale-digest-test','remaining']);a=p.parse_args()
+    if a.phase!='preflight':
+        assert read('preflight.json')['plan_sha256']==hashlib.sha256((BASE/'verification/repair-plan.json').read_bytes()).hexdigest(), 'Approved plan drift'
+    if a.phase=='preflight':preflight()
+    elif a.phase=='inspect':
+        baseline=read('preflight.json')['products'];fresh=fetch_products(list(PRODUCTS)+list(EXCLUDED));save('drift-current.json',fresh)
+        for pid in PRODUCTS:
+            before,after=stable(baseline[pid]),stable(fresh[pid])
+            keys=[k for k in before if before[k]!=after[k]]
+            if keys:
+                print(json.dumps(dict(id=pid,changed={k:dict(before=before[k],after=after[k]) for k in keys})),flush=True)
+    elif a.phase in ['rehearse','database']:apply_db(a.phase=='rehearse')
+    else:shopify(a.phase)
+if __name__=='__main__':main()
diff --git a/execution-20260911/actions.jsonl b/execution-20260911/actions.jsonl
index e57c197..476caf7 100644
--- a/execution-20260911/actions.jsonl
+++ b/execution-20260911/actions.jsonl
@@ -1,3 +1,61 @@
 {"ts": "2026-09-11T16:13:45.122369+00:00", "event": "preflight_pass", "rows": 26, "products": 52, "metafields": 104}
 {"ts": "2026-09-11T16:22:46.990101+00:00", "event": "database_rehearsal_pass", "result": "verified26-and-reversed"}
 {"ts": "2026-09-11T16:26:04.804823+00:00", "event": "database_apply_pass", "result": "verified26"}
+{"ts": "2026-09-11T17:22:42.574567+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172618803", "fields": [{"ownerId": "gid://shopify/Product/7950172618803", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}, {"ownerId": "gid://shopify/Product/7950172618803", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}]}
+{"ts": "2026-09-11T17:22:43.294739+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172618803", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732834738227", "namespace": "custom", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}, {"id": "gid://shopify/Metafield/37732834770995", "namespace": "dwc", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}], "userErrors": []}}
+{"ts": "2026-09-11T17:22:43.988899+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172618803", "reverse": false}
+{"ts": "2026-09-11T17:28:18.176971+00:00", "event": "stale_digest_rejected", "id": "gid://shopify/Product/7950172618803"}
+{"ts": "2026-09-11T17:30:54.081181+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172618803", "fields": [{"ownerId": "gid://shopify/Product/7950172618803", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}, {"ownerId": "gid://shopify/Product/7950172618803", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}]}
+{"ts": "2026-09-11T17:30:54.436244+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172618803", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732834738227", "namespace": "custom", "key": "manufacturer_sku", "value": "63001", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}, {"id": "gid://shopify/Metafield/37732834770995", "namespace": "dwc", "key": "manufacturer_sku", "value": "63001", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}], "userErrors": []}}
+{"ts": "2026-09-11T17:30:55.123527+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172618803", "reverse": true}
+{"ts": "2026-09-11T17:30:59.404404+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172618803", "fields": [{"ownerId": "gid://shopify/Product/7950172618803", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}, {"ownerId": "gid://shopify/Product/7950172618803", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}]}
+{"ts": "2026-09-11T17:30:59.835292+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172618803", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732834738227", "namespace": "custom", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}, {"id": "gid://shopify/Metafield/37732834770995", "namespace": "dwc", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:00.551194+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172618803", "reverse": false}
+{"ts": "2026-09-11T17:31:04.937046+00:00", "event": "idempotent_skip", "id": "gid://shopify/Product/7950172618803", "reverse": false}
+{"ts": "2026-09-11T17:31:30.729027+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923134693427", "fields": [{"ownerId": "gid://shopify/Product/7923134693427", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}, {"ownerId": "gid://shopify/Product/7923134693427", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "63001-upholstery", "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"}]}
+{"ts": "2026-09-11T17:31:31.126814+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923134693427", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165390102579", "namespace": "custom", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}, {"id": "gid://shopify/Metafield/37165390135347", "namespace": "dwc", "key": "manufacturer_sku", "value": "63001-upholstery", "compareDigest": "5ab38a2e96641cbd14381c9669cfdc6250c360a7867770275d74202db962dc12"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:31.833133+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923134693427", "reverse": false}
+{"ts": "2026-09-11T17:31:33.330230+00:00", "event": "idempotent_skip", "id": "gid://shopify/Product/7950172618803", "reverse": false}
+{"ts": "2026-09-11T17:31:34.678417+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135479859", "fields": [{"ownerId": "gid://shopify/Product/7923135479859", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630010-upholstery", "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"}, {"ownerId": "gid://shopify/Product/7923135479859", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630010-upholstery", "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"}]}
+{"ts": "2026-09-11T17:31:35.051676+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135479859", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165396328499", "namespace": "custom", "key": "manufacturer_sku", "value": "630010-upholstery", "compareDigest": "676cf83f290c18167c9123222089b18ae249b4729141a58e9a56032ee80d9b63"}, {"id": "gid://shopify/Metafield/37165396361267", "namespace": "dwc", "key": "manufacturer_sku", "value": "630010-upholstery", "compareDigest": "676cf83f290c18167c9123222089b18ae249b4729141a58e9a56032ee80d9b63"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:35.754569+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135479859", "reverse": false}
+{"ts": "2026-09-11T17:31:37.212035+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172684339", "fields": [{"ownerId": "gid://shopify/Product/7950172684339", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630010-upholstery", "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"}, {"ownerId": "gid://shopify/Product/7950172684339", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630010-upholstery", "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"}]}
+{"ts": "2026-09-11T17:31:37.738682+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172684339", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732835557427", "namespace": "custom", "key": "manufacturer_sku", "value": "630010-upholstery", "compareDigest": "676cf83f290c18167c9123222089b18ae249b4729141a58e9a56032ee80d9b63"}, {"id": "gid://shopify/Metafield/37732835590195", "namespace": "dwc", "key": "manufacturer_sku", "value": "630010-upholstery", "compareDigest": "676cf83f290c18167c9123222089b18ae249b4729141a58e9a56032ee80d9b63"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:38.545681+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172684339", "reverse": false}
+{"ts": "2026-09-11T17:31:40.066401+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135578163", "fields": [{"ownerId": "gid://shopify/Product/7923135578163", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630011-upholstery", "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"}, {"ownerId": "gid://shopify/Product/7923135578163", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630011-upholstery", "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"}]}
+{"ts": "2026-09-11T17:31:40.552431+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135578163", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165397016627", "namespace": "custom", "key": "manufacturer_sku", "value": "630011-upholstery", "compareDigest": "c311efbbf0a23ee7a873d4d33996dfbd7c2ce11a55edb6f3e2b9dc00815e6753"}, {"id": "gid://shopify/Metafield/37165397049395", "namespace": "dwc", "key": "manufacturer_sku", "value": "630011-upholstery", "compareDigest": "c311efbbf0a23ee7a873d4d33996dfbd7c2ce11a55edb6f3e2b9dc00815e6753"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:41.368643+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135578163", "reverse": false}
+{"ts": "2026-09-11T17:31:42.863656+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172782643", "fields": [{"ownerId": "gid://shopify/Product/7950172782643", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630011-upholstery", "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"}, {"ownerId": "gid://shopify/Product/7950172782643", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630011-upholstery", "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"}]}
+{"ts": "2026-09-11T17:31:43.211734+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172782643", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732836868147", "namespace": "custom", "key": "manufacturer_sku", "value": "630011-upholstery", "compareDigest": "c311efbbf0a23ee7a873d4d33996dfbd7c2ce11a55edb6f3e2b9dc00815e6753"}, {"id": "gid://shopify/Metafield/37732836900915", "namespace": "dwc", "key": "manufacturer_sku", "value": "630011-upholstery", "compareDigest": "c311efbbf0a23ee7a873d4d33996dfbd7c2ce11a55edb6f3e2b9dc00815e6753"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:43.982837+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172782643", "reverse": false}
+{"ts": "2026-09-11T17:31:45.447944+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135643699", "fields": [{"ownerId": "gid://shopify/Product/7923135643699", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630012-upholstery", "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"}, {"ownerId": "gid://shopify/Product/7923135643699", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630012-upholstery", "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"}]}
+{"ts": "2026-09-11T17:31:45.835939+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135643699", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165397639219", "namespace": "custom", "key": "manufacturer_sku", "value": "630012-upholstery", "compareDigest": "96ada432e2ad6298eff2edffebdc578227f524395e0b82789eee12f0c09ca3eb"}, {"id": "gid://shopify/Metafield/37165397671987", "namespace": "dwc", "key": "manufacturer_sku", "value": "630012-upholstery", "compareDigest": "96ada432e2ad6298eff2edffebdc578227f524395e0b82789eee12f0c09ca3eb"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:46.504004+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135643699", "reverse": false}
+{"ts": "2026-09-11T17:31:47.918080+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172815411", "fields": [{"ownerId": "gid://shopify/Product/7950172815411", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630012-upholstery", "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"}, {"ownerId": "gid://shopify/Product/7950172815411", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630012-upholstery", "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"}]}
+{"ts": "2026-09-11T17:31:48.355476+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172815411", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732837687347", "namespace": "custom", "key": "manufacturer_sku", "value": "630012-upholstery", "compareDigest": "96ada432e2ad6298eff2edffebdc578227f524395e0b82789eee12f0c09ca3eb"}, {"id": "gid://shopify/Metafield/37732837720115", "namespace": "dwc", "key": "manufacturer_sku", "value": "630012-upholstery", "compareDigest": "96ada432e2ad6298eff2edffebdc578227f524395e0b82789eee12f0c09ca3eb"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:49.173065+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172815411", "reverse": false}
+{"ts": "2026-09-11T17:31:50.562716+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135742003", "fields": [{"ownerId": "gid://shopify/Product/7923135742003", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630013-upholstery", "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"}, {"ownerId": "gid://shopify/Product/7923135742003", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630013-upholstery", "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"}]}
+{"ts": "2026-09-11T17:31:50.883163+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135742003", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165398556723", "namespace": "custom", "key": "manufacturer_sku", "value": "630013-upholstery", "compareDigest": "8d21484c1b5b1fd7e030f344e553ac80d7f48ef6cd594070c66c67ba5926e0aa"}, {"id": "gid://shopify/Metafield/37165398589491", "namespace": "dwc", "key": "manufacturer_sku", "value": "630013-upholstery", "compareDigest": "8d21484c1b5b1fd7e030f344e553ac80d7f48ef6cd594070c66c67ba5926e0aa"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:51.584094+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135742003", "reverse": false}
+{"ts": "2026-09-11T17:31:52.944891+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172848179", "fields": [{"ownerId": "gid://shopify/Product/7950172848179", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630013-upholstery", "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"}, {"ownerId": "gid://shopify/Product/7950172848179", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630013-upholstery", "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"}]}
+{"ts": "2026-09-11T17:31:53.314912+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172848179", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732838932531", "namespace": "custom", "key": "manufacturer_sku", "value": "630013-upholstery", "compareDigest": "8d21484c1b5b1fd7e030f344e553ac80d7f48ef6cd594070c66c67ba5926e0aa"}, {"id": "gid://shopify/Metafield/37732838965299", "namespace": "dwc", "key": "manufacturer_sku", "value": "630013-upholstery", "compareDigest": "8d21484c1b5b1fd7e030f344e553ac80d7f48ef6cd594070c66c67ba5926e0aa"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:54.023317+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172848179", "reverse": false}
+{"ts": "2026-09-11T17:31:55.411577+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135807539", "fields": [{"ownerId": "gid://shopify/Product/7923135807539", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630014-upholstery", "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"}, {"ownerId": "gid://shopify/Product/7923135807539", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630014-upholstery", "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"}]}
+{"ts": "2026-09-11T17:31:55.738359+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135807539", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165399965747", "namespace": "custom", "key": "manufacturer_sku", "value": "630014-upholstery", "compareDigest": "5e2734d0f170f272b6b3f698100fdde0be5d1d9cb56e69fda80dac936ab88ad2"}, {"id": "gid://shopify/Metafield/37165400031283", "namespace": "dwc", "key": "manufacturer_sku", "value": "630014-upholstery", "compareDigest": "5e2734d0f170f272b6b3f698100fdde0be5d1d9cb56e69fda80dac936ab88ad2"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:56.424544+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135807539", "reverse": false}
+{"ts": "2026-09-11T17:31:57.820698+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950172913715", "fields": [{"ownerId": "gid://shopify/Product/7950172913715", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630014-upholstery", "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"}, {"ownerId": "gid://shopify/Product/7950172913715", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630014-upholstery", "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"}]}
+{"ts": "2026-09-11T17:31:58.129177+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950172913715", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732839850035", "namespace": "custom", "key": "manufacturer_sku", "value": "630014-upholstery", "compareDigest": "5e2734d0f170f272b6b3f698100fdde0be5d1d9cb56e69fda80dac936ab88ad2"}, {"id": "gid://shopify/Metafield/37732839882803", "namespace": "dwc", "key": "manufacturer_sku", "value": "630014-upholstery", "compareDigest": "5e2734d0f170f272b6b3f698100fdde0be5d1d9cb56e69fda80dac936ab88ad2"}], "userErrors": []}}
+{"ts": "2026-09-11T17:31:58.816578+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950172913715", "reverse": false}
+{"ts": "2026-09-11T17:32:00.202047+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135905843", "fields": [{"ownerId": "gid://shopify/Product/7923135905843", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630015-upholstery", "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"}, {"ownerId": "gid://shopify/Product/7923135905843", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630015-upholstery", "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"}]}
+{"ts": "2026-09-11T17:32:00.570283+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135905843", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165401210931", "namespace": "custom", "key": "manufacturer_sku", "value": "630015-upholstery", "compareDigest": "d835e4f074aef9d60d7d8d828b2649174f606242470dc48978d954270379f424"}, {"id": "gid://shopify/Metafield/37165401243699", "namespace": "dwc", "key": "manufacturer_sku", "value": "630015-upholstery", "compareDigest": "d835e4f074aef9d60d7d8d828b2649174f606242470dc48978d954270379f424"}], "userErrors": []}}
+{"ts": "2026-09-11T17:32:01.247002+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135905843", "reverse": false}
+{"ts": "2026-09-11T17:32:02.697420+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950173077555", "fields": [{"ownerId": "gid://shopify/Product/7950173077555", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630015-upholstery", "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"}, {"ownerId": "gid://shopify/Product/7950173077555", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630015-upholstery", "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"}]}
+{"ts": "2026-09-11T17:32:03.098263+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950173077555", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732840996915", "namespace": "custom", "key": "manufacturer_sku", "value": "630015-upholstery", "compareDigest": "d835e4f074aef9d60d7d8d828b2649174f606242470dc48978d954270379f424"}, {"id": "gid://shopify/Metafield/37732841029683", "namespace": "dwc", "key": "manufacturer_sku", "value": "630015-upholstery", "compareDigest": "d835e4f074aef9d60d7d8d828b2649174f606242470dc48978d954270379f424"}], "userErrors": []}}
+{"ts": "2026-09-11T17:32:03.751337+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950173077555", "reverse": false}
+{"ts": "2026-09-11T17:32:05.153741+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923135971379", "fields": [{"ownerId": "gid://shopify/Product/7923135971379", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630016-upholstery", "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"}, {"ownerId": "gid://shopify/Product/7923135971379", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630016-upholstery", "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"}]}
+{"ts": "2026-09-11T17:32:05.680187+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7923135971379", "result": {"metafields": [{"id": "gid://shopify/Metafield/37165401636915", "namespace": "custom", "key": "manufacturer_sku", "value": "630016-upholstery", "compareDigest": "bb0517c57fb6ebeaf9daeaf5aa0a04aea6c8eda8748ac08f8e918150ba7691b6"}, {"id": "gid://shopify/Metafield/37165401669683", "namespace": "dwc", "key": "manufacturer_sku", "value": "630016-upholstery", "compareDigest": "bb0517c57fb6ebeaf9daeaf5aa0a04aea6c8eda8748ac08f8e918150ba7691b6"}], "userErrors": []}}
+{"ts": "2026-09-11T17:32:06.364028+00:00", "event": "product_verified", "id": "gid://shopify/Product/7923135971379", "reverse": false}
+{"ts": "2026-09-11T17:32:07.745968+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7950173110323", "fields": [{"ownerId": "gid://shopify/Product/7950173110323", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630016-upholstery", "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"}, {"ownerId": "gid://shopify/Product/7950173110323", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630016-upholstery", "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"}]}
+{"ts": "2026-09-11T17:32:08.081983+00:00", "event": "mutation_ack", "id": "gid://shopify/Product/7950173110323", "result": {"metafields": [{"id": "gid://shopify/Metafield/37732842242099", "namespace": "custom", "key": "manufacturer_sku", "value": "630016-upholstery", "compareDigest": "bb0517c57fb6ebeaf9daeaf5aa0a04aea6c8eda8748ac08f8e918150ba7691b6"}, {"id": "gid://shopify/Metafield/37732842274867", "namespace": "dwc", "key": "manufacturer_sku", "value": "630016-upholstery", "compareDigest": "bb0517c57fb6ebeaf9daeaf5aa0a04aea6c8eda8748ac08f8e918150ba7691b6"}], "userErrors": []}}
+{"ts": "2026-09-11T17:32:08.740369+00:00", "event": "product_verified", "id": "gid://shopify/Product/7950173110323", "reverse": false}
+{"ts": "2026-09-11T17:32:10.127166+00:00", "event": "mutation_intent", "id": "gid://shopify/Product/7923136102451", "fields": [{"ownerId": "gid://shopify/Product/7923136102451", "namespace": "custom", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630017-upholstery", "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"}, {"ownerId": "gid://shopify/Product/7923136102451", "namespace": "dwc", "key": "manufacturer_sku", "type": "single_line_text_field", "value": "630017-upholstery", "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"}]}
diff --git a/execution-20260911/drift-current.json b/execution-20260911/drift-current.json
new file mode 100644
index 0000000..dd1f82c
--- /dev/null
+++ b/execution-20260911/drift-current.json
@@ -0,0 +1,19602 @@
+{
+  "gid://shopify/Product/7923134693427": {
+    "id": "gid://shopify/Product/7923134693427",
+    "title": "Carnegie Siltech Grain 1 Fabric",
+    "handle": "carnegie-siltech-grain-alabaster",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63001",
+      "Alabaster",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Light",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "White"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753419698227",
+          "sku": "DWAG-379296",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753419730995",
+          "sku": "DWAG-379296-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165390102579",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63001",
+          "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165390135347",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63001",
+          "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165390168115",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165913047091",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165913374771",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165913538611",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165913571379",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165915766835",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916028979",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916094515",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916225587",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916258355",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916323891",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Alabaster",
+          "compareDigest": "6bb59cebf14d55ca003ef935bfa7795f1465cfc16f04c8df1e67c9706a511e92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916356659",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 1",
+          "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916389427",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916454963",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916651571",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165916782643",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165917536307",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165917700147",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165917831219",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain White | Carnegie",
+          "compareDigest": "ee7541b18ec7dc3ac121cabe90ff0c879890a103706bac33f862fb985202c72c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165940506675",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165940539443",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165940572211",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165940604979",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#F2EFEB",
+          "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180662153267",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Alabaster",
+          "compareDigest": "6bb59cebf14d55ca003ef935bfa7795f1465cfc16f04c8df1e67c9706a511e92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180662186035",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#F2EFEB",
+          "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183690965043",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#F2EFEB",
+          "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847295027",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379296",
+          "compareDigest": "2c5b61b03f010e252acf5ca6783f4ff8c9c47a8b5a38ea39c341897f4157da73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847327795",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847360563",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847393331",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847426099",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847458867",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409233862707",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63001\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "85be2930e80018070ae0135ffd1a592ff78f65bfac6dab81f4801a4d5e091b73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470324787",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63001",
+          "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470357555",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470390323",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470423091",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470455859",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470488627",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470521395",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470554163",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470586931",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470619699",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470652467",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470685235",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470718003",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470750771",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470783539",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470816307",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470849075",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470881843",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470914611",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457470947379",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37458212585523",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546614816819",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379296",
+          "compareDigest": "2c5b61b03f010e252acf5ca6783f4ff8c9c47a8b5a38ea39c341897f4157da73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546614849587",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172618803": {
+    "id": "gid://shopify/Product/7950172618803",
+    "title": "Siltech Grain Fabric - Color 1 | Carnegie",
+    "handle": "siltech-grain-fabric-color-1",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#F2EFEB",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026",
+      "White"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837131878451",
+          "sku": "DWAG-379296",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837131911219",
+          "sku": "DWAG-379296-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732834181171",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834213939",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834246707",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834279475",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834312243",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834345011",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834377779",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834410547",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834443315",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834476083",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834508851",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834541619",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834574387",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 1",
+          "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834607155",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 1",
+          "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834639923",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#F2EFEB",
+          "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834672691",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834705459",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834738227",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63001",
+          "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834770995",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63001",
+          "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834803763",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834836531",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834869299",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732834902067",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 1 | Carnegie",
+          "compareDigest": "c465ae629c30f9c20139ac8326da4c02666a0403851cd12d72541a7e3235054d"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135479859": {
+    "id": "gid://shopify/Product/7923135479859",
+    "title": "Carnegie Siltech Grain 10 Fabric",
+    "handle": "carnegie-siltech-grain-moss",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630010",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Moss",
+      "Pewter",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421205555",
+          "sku": "DWAG-379297",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421238323",
+          "sku": "DWAG-379297-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165396328499",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630010",
+          "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165396361267",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630010",
+          "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165396394035",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949747251",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949780019",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949812787",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949845555",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949878323",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949911091",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949943859",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949976627",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950009395",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950042163",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950074931",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950107699",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950140467",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Moss",
+          "compareDigest": "eaaace3d6d7fdab6c40af0bc3fd4bae630d35bee0a97394424e2b813f2763e3a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950173235",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 10",
+          "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950206003",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#918A64",
+          "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950238771",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950271539",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950304307",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950337075",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950369843",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950402611",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950435379",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Pewter | Carnegie",
+          "compareDigest": "56c2dc91f5992cf37e075d3537a8b51e231fb967166c1255392747eb3c8d60d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180665430067",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Moss",
+          "compareDigest": "eaaace3d6d7fdab6c40af0bc3fd4bae630d35bee0a97394424e2b813f2763e3a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180665462835",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#918A64",
+          "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183694176307",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#918A64",
+          "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852439603",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379297",
+          "compareDigest": "f55e2c767853833d5ef64a5732f7298a464e6ac5b5368f82c729fa496a5c3c74"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852472371",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852505139",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852537907",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852570675",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852603443",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407172659",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630010\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "9d9fe359ff2210aa536ce06da474a926c8b62be8ece02f7d23f997a06b268dd8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481269299",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630010",
+          "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481302067",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481334835",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481367603",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481400371",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481433139",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481465907",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481498675",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481531443",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481564211",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481596979",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481629747",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481662515",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481695283",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481728051",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481760819",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481793587",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481826355",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481859123",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481891891",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433909299",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615767091",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379297",
+          "compareDigest": "f55e2c767853833d5ef64a5732f7298a464e6ac5b5368f82c729fa496a5c3c74"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615799859",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172684339": {
+    "id": "gid://shopify/Product/7950172684339",
+    "title": "Siltech Grain Fabric - Color 10 | Carnegie",
+    "handle": "siltech-grain-fabric-color-10",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#918A64",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Pewter",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132009523",
+          "sku": "DWAG-379297",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132042291",
+          "sku": "DWAG-379297-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732835000371",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835033139",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835065907",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835098675",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835131443",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835164211",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835196979",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835229747",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835262515",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835295283",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835328051",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835360819",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835393587",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 10",
+          "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835426355",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 10",
+          "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835459123",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#918A64",
+          "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835491891",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835524659",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835557427",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630010",
+          "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835590195",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630010",
+          "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835622963",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835655731",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835688499",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732835721267",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 10 | Carnegie",
+          "compareDigest": "e138c4731be7af59f68dbb50874eb9be18205dd44df3af765f4fb168f58e4882"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135578163": {
+    "id": "gid://shopify/Product/7923135578163",
+    "title": "Carnegie Siltech Grain 11 Fabric",
+    "handle": "carnegie-siltech-grain-ochre",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630011",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Mustard",
+      "Ochre",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421402163",
+          "sku": "DWAG-379298",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421434931",
+          "sku": "DWAG-379298-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165397016627",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630011",
+          "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165397049395",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630011",
+          "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165397082163",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950468147",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950500915",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950533683",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950566451",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950599219",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950631987",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950664755",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950697523",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950730291",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950763059",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950795827",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950828595",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950861363",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Ochre",
+          "compareDigest": "66d7df5571373c5cf7399334da048e0a3ef8bf8d9da9ec9b95f4cfe0d10f243a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950894131",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 11",
+          "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950926899",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#D28B20",
+          "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950959667",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165950992435",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951025203",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951057971",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951090739",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951123507",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951156275",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Mustard | Carnegie",
+          "compareDigest": "14945309f8d0fe681dec0ce79eec4f9f629ef1662a3633f2f39977ad20d5fce9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180666740787",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Ochre",
+          "compareDigest": "66d7df5571373c5cf7399334da048e0a3ef8bf8d9da9ec9b95f4cfe0d10f243a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180666773555",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#D28B20",
+          "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183694274611",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#D28B20",
+          "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852636211",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379298",
+          "compareDigest": "35c069a8400a59fd4ff78e4afe34cc6c8600881f21266adc17e71468bb6c6c86"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852668979",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852701747",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852734515",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852767283",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852800051",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407369267",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630011\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "3a41a58816a2dc8e6f9781ff1caa5705a786f71993b3421d2a150a9388c6c527"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481924659",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630011",
+          "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481957427",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481990195",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482022963",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482055731",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482088499",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482121267",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482154035",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482186803",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482219571",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482252339",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482285107",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482317875",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482350643",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482383411",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482416179",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482448947",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482481715",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482514483",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482547251",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461434138675",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616029235",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379298",
+          "compareDigest": "35c069a8400a59fd4ff78e4afe34cc6c8600881f21266adc17e71468bb6c6c86"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616062003",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172782643": {
+    "id": "gid://shopify/Product/7950172782643",
+    "title": "Siltech Grain Fabric - Color 11 | Carnegie",
+    "handle": "siltech-grain-fabric-color-11",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#D28B20",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "Mustard",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132206131",
+          "sku": "DWAG-379298",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132238899",
+          "sku": "DWAG-379298-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732836311091",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836343859",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836376627",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836409395",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836442163",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836474931",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836507699",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836540467",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836573235",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836606003",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836638771",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836671539",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836704307",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 11",
+          "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836737075",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 11",
+          "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836769843",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#D28B20",
+          "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836802611",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836835379",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836868147",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630011",
+          "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836900915",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630011",
+          "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836933683",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836966451",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732836999219",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837031987",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 11 | Carnegie",
+          "compareDigest": "b9bc4c8afe3ef4bb6454dcefd8a48588312d965263f6111fd92b24615ca29b96"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135643699": {
+    "id": "gid://shopify/Product/7923135643699",
+    "title": "Carnegie Siltech Grain 12 Fabric",
+    "handle": "carnegie-siltech-grain-brick",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630012",
+      "Brick",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421533235",
+          "sku": "DWAG-379299",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421566003",
+          "sku": "DWAG-379299-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165397639219",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630012",
+          "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165397671987",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630012",
+          "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165397704755",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951451187",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951483955",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951516723",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951549491",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951582259",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951615027",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951647795",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951680563",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951713331",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951746099",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951778867",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951811635",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951844403",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Brick",
+          "compareDigest": "c3995cc76d34d0a42d57935a7c98cec311a51924946ccff31465b68b4cbc1ee4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951877171",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 12",
+          "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951909939",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#952917",
+          "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951942707",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165951975475",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952008243",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952041011",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952073779",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952106547",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952139315",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Brick 99 | Carnegie",
+          "compareDigest": "899b166cac9b5d036e8401974ccce958499ad18ec2b82bb8b14fffcb5c295bd2"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180666904627",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Brick",
+          "compareDigest": "c3995cc76d34d0a42d57935a7c98cec311a51924946ccff31465b68b4cbc1ee4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180666937395",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#952917",
+          "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183694602291",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#952917",
+          "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852832819",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379299",
+          "compareDigest": "cd010f807fbab8d08422a91f4b0d12bd9f39024748091d2161eebf5cf7d0cfd5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852865587",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852898355",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852931123",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852963891",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852996659",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407402035",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630012\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "bea115b2656a0b9a59c6c5640ecac67520e83daf1409c8eb8d36d12a30ffac06"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482580019",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630012",
+          "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482612787",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482645555",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482678323",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482711091",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482743859",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482776627",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482809395",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482842163",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482874931",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482907699",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482940467",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457482973235",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483006003",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483038771",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483071539",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483104307",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483137075",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483169843",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483202611",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461434269747",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616094771",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379299",
+          "compareDigest": "cd010f807fbab8d08422a91f4b0d12bd9f39024748091d2161eebf5cf7d0cfd5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616127539",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172815411": {
+    "id": "gid://shopify/Product/7950172815411",
+    "title": "Siltech Grain Fabric - Color 12 | Carnegie",
+    "handle": "siltech-grain-fabric-color-12",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#952917",
+      "Brick",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132271667",
+          "sku": "DWAG-379299",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132304435",
+          "sku": "DWAG-379299-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732837130291",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837163059",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837195827",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837228595",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837261363",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837294131",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837326899",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837359667",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837392435",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837425203",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837457971",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837490739",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837523507",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 12",
+          "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837556275",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 12",
+          "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837589043",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#952917",
+          "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837621811",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837654579",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837687347",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630012",
+          "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837720115",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630012",
+          "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837752883",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837785651",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837818419",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732837851187",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 12 | Carnegie",
+          "compareDigest": "09173d7bed151081406188c2326623995cd82226bc54be866e3214ac67e99d84"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135742003": {
+    "id": "gid://shopify/Product/7923135742003",
+    "title": "Carnegie Siltech Grain 13 Fabric",
+    "handle": "carnegie-siltech-grain-crimson",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630013",
+      "Burgundy",
+      "Carnegie",
+      "Crimson",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421729843",
+          "sku": "DWAG-379300",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421762611",
+          "sku": "DWAG-379300-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165398556723",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630013",
+          "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165398589491",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630013",
+          "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165398622259",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952204851",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952237619",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952270387",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952303155",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952335923",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952368691",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952401459",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952434227",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952466995",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952499763",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952532531",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952565299",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952598067",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Crimson",
+          "compareDigest": "298c55d75b311b912517ddca4ac3961f2a47a2e99438f62f0ea412ad519524d0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952630835",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 13",
+          "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952663603",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#8E1417",
+          "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952696371",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952729139",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952761907",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952794675",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952827443",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952860211",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165952892979",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Burgundy | Carnegie",
+          "compareDigest": "25c7069132c46771e31eec6628dacfeac3cbbf10543889d5564d17850483c0b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667101235",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Crimson",
+          "compareDigest": "298c55d75b311b912517ddca4ac3961f2a47a2e99438f62f0ea412ad519524d0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667134003",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#8E1417",
+          "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183694798899",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#8E1417",
+          "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853029427",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379300",
+          "compareDigest": "6662f521fee4ebc0aa12db1db919c4d7a9914bd70a4d045944ba7ceee78cec73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853062195",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853094963",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853193267",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853226035",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853258803",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407467571",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630013\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "59b54d10731394eb990d318bbb7086c16cd5f821a72da9d6cc8073f9f3823e4a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483268147",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630013",
+          "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483300915",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483333683",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483366451",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483399219",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483431987",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483464755",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483497523",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483530291",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483563059",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483595827",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483628595",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483661363",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483694131",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483726899",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483759667",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483792435",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483825203",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483857971",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483890739",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461434990643",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616160307",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379300",
+          "compareDigest": "6662f521fee4ebc0aa12db1db919c4d7a9914bd70a4d045944ba7ceee78cec73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616193075",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172848179": {
+    "id": "gid://shopify/Product/7950172848179",
+    "title": "Siltech Grain Fabric - Color 13 | Carnegie",
+    "handle": "siltech-grain-fabric-color-13",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#8E1417",
+      "Burgundy",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132337203",
+          "sku": "DWAG-379300",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132369971",
+          "sku": "DWAG-379300-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732838375475",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838408243",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838441011",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838473779",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838506547",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838539315",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838572083",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838604851",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838637619",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838670387",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838703155",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838735923",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838768691",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 13",
+          "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838801459",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 13",
+          "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838834227",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#8E1417",
+          "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838866995",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838899763",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838932531",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630013",
+          "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838965299",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630013",
+          "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732838998067",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839030835",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839063603",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839096371",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 13 | Carnegie",
+          "compareDigest": "af7bc95517725a81ec59312d661f717d29ff282a800fb5a400801ccf2dd1bae6"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135807539": {
+    "id": "gid://shopify/Product/7923135807539",
+    "title": "Carnegie Siltech Grain 14 Fabric",
+    "handle": "carnegie-siltech-grain-mahogany",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630014",
+      "Carnegie",
+      "display_variant",
+      "Espresso",
+      "Leather-Look",
+      "Mahogany",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421860915",
+          "sku": "DWAG-379301",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421893683",
+          "sku": "DWAG-379301-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165399965747",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630014",
+          "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165400031283",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630014",
+          "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165400064051",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953056819",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953089587",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953122355",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953155123",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953187891",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953220659",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953253427",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953286195",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953318963",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953351731",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953384499",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953417267",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953450035",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Mahogany",
+          "compareDigest": "ea5454db845079983915baae226ef215f0721058a3b2798ce1322ff673a7074f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953482803",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 14",
+          "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953515571",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#4A221B",
+          "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953548339",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953581107",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953613875",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953646643",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953679411",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953712179",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953744947",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Espresso 01 | Carnegie",
+          "compareDigest": "a1a259ee2b6d6d47dab87e5f971bb4b0e0b8a9b90ae165d63c04761347b8bb00"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667297843",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Mahogany",
+          "compareDigest": "ea5454db845079983915baae226ef215f0721058a3b2798ce1322ff673a7074f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667330611",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#4A221B",
+          "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183695552563",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#4A221B",
+          "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853291571",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379301",
+          "compareDigest": "b1f811bc790cbfd5ccd2c9a16e8bfd04c7b39c3c4cc4f7da6c8c5d4bc29ee746"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853324339",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853357107",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853389875",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853422643",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853455411",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407762483",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630014\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "a27b1e58c560b80fed1a406d3df49f5231db18e2bfc4be55202a5f95ca19f5c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483923507",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630014",
+          "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483956275",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457483989043",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484021811",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484054579",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484087347",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484120115",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484152883",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484185651",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484218419",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484251187",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484283955",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484316723",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484349491",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484382259",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484415027",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484447795",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484480563",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484513331",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484546099",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461435383859",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616225843",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379301",
+          "compareDigest": "b1f811bc790cbfd5ccd2c9a16e8bfd04c7b39c3c4cc4f7da6c8c5d4bc29ee746"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616258611",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950172913715": {
+    "id": "gid://shopify/Product/7950172913715",
+    "title": "Siltech Grain Fabric - Color 14 | Carnegie",
+    "handle": "siltech-grain-fabric-color-14",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#4A221B",
+      "Carnegie",
+      "display_variant",
+      "Espresso",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132435507",
+          "sku": "DWAG-379301",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132468275",
+          "sku": "DWAG-379301-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732839292979",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839325747",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839358515",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839391283",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839424051",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839456819",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839489587",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839522355",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839555123",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839587891",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839620659",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839653427",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839686195",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 14",
+          "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839718963",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 14",
+          "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839751731",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#4A221B",
+          "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839784499",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839817267",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839850035",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630014",
+          "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839882803",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630014",
+          "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839915571",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839948339",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732839981107",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840013875",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 14 | Carnegie",
+          "compareDigest": "7f954c0891ba51d2f2f46d0333792162ad22f6358f744012987bd0d83b4aa00c"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135905843": {
+    "id": "gid://shopify/Product/7923135905843",
+    "title": "Carnegie Siltech Grain 15 Fabric",
+    "handle": "carnegie-siltech-grain-russet",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630015",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Oxblood",
+      "Russet",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753422057523",
+          "sku": "DWAG-379302",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753422090291",
+          "sku": "DWAG-379302-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165401210931",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630015",
+          "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165401243699",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630015",
+          "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165401276467",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953810483",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953843251",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953876019",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953908787",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953941555",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165953974323",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954007091",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954039859",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954072627",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954105395",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954138163",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954170931",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954203699",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Russet",
+          "compareDigest": "2bc4cb8eba33c6b8b61de7f005647106e11f4c44b4233ae474592ba41e6fdadc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954236467",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 15",
+          "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954269235",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#5D2C18",
+          "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954302003",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954334771",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954367539",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954400307",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954433075",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954465843",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954498611",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Oxblood | Carnegie",
+          "compareDigest": "4719bd508132c6c503286ee658faf5a72073872779845ffbfba6dd6e7eb8b251"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667494451",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Russet",
+          "compareDigest": "2bc4cb8eba33c6b8b61de7f005647106e11f4c44b4233ae474592ba41e6fdadc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667527219",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#5D2C18",
+          "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183695781939",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#5D2C18",
+          "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853488179",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379302",
+          "compareDigest": "dbe2021893c27bc74b1e0d56f201e084284a1c156964bd015882ef5604bc0c8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853520947",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853553715",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853586483",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853619251",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853652019",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409408450611",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630015\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "d9c36cfede5fad9edd0a794a8685af6500153bbeffc53ee099481f6d4ef5123a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484578867",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630015",
+          "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484611635",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484644403",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484677171",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484709939",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484742707",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484775475",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484808243",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484841011",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484873779",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484906547",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484939315",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457484972083",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485004851",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485037619",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485070387",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485103155",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485135923",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485168691",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485201459",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461435580467",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616455219",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379302",
+          "compareDigest": "dbe2021893c27bc74b1e0d56f201e084284a1c156964bd015882ef5604bc0c8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616487987",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173077555": {
+    "id": "gid://shopify/Product/7950173077555",
+    "title": "Siltech Grain Fabric - Color 15 | Carnegie",
+    "handle": "siltech-grain-fabric-color-15",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#5D2C18",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Oxblood",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132763187",
+          "sku": "DWAG-379302",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132795955",
+          "sku": "DWAG-379302-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732840439859",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840472627",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840505395",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840538163",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840570931",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840603699",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840636467",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840669235",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840702003",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840734771",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840767539",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840800307",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840833075",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 15",
+          "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840865843",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 15",
+          "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840898611",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#5D2C18",
+          "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840931379",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840964147",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732840996915",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630015",
+          "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841029683",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630015",
+          "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841062451",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841095219",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841127987",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841160755",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 15 | Carnegie",
+          "compareDigest": "1ecd27a4e6d4bf9651c6793eb46e8cf648e6f55f2d94586ce2a30337eea59e20"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135971379": {
+    "id": "gid://shopify/Product/7923135971379",
+    "title": "Carnegie Siltech Grain 16 Fabric",
+    "handle": "carnegie-siltech-grain-terracotta",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630016",
+      "Brick",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Terracotta",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753422188595",
+          "sku": "DWAG-379303",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753422221363",
+          "sku": "DWAG-379303-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165401636915",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630016",
+          "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165401669683",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630016",
+          "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165401702451",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954662451",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954695219",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954727987",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954760755",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954793523",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954826291",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954859059",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954891827",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954924595",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954957363",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165954990131",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955022899",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955055667",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Terracotta",
+          "compareDigest": "08e2349b817b9cab6d603927b9e50c5ae6135808e4cc59753ce9fc5084bf327b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955088435",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 16",
+          "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955121203",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#934621",
+          "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955153971",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955186739",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955219507",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955252275",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955285043",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955317811",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955350579",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Brick 03 | Carnegie",
+          "compareDigest": "aec9a36f09669c23dd4f65d8833272c1d64f137ab590525489798d2acf30fe18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667658291",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Terracotta",
+          "compareDigest": "08e2349b817b9cab6d603927b9e50c5ae6135808e4cc59753ce9fc5084bf327b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667691059",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#934621",
+          "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183696011315",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#934621",
+          "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853684787",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379303",
+          "compareDigest": "370196ff91331446a9759a0adfb0586d4f54aecc1a606b2232f65aa0d2ef15c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853717555",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853750323",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853783091",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853815859",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853848627",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409408483379",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630016\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "c92ae090d36c5adc16c5a24d5e2981e462e5bd078a69c9719cfc28484440fc69"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485266995",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630016",
+          "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485299763",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485332531",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485365299",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485398067",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485430835",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485463603",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485496371",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485529139",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485561907",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485594675",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485627443",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485660211",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485692979",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485725747",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485758515",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485791283",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485824051",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485856819",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485889587",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461435777075",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616684595",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379303",
+          "compareDigest": "370196ff91331446a9759a0adfb0586d4f54aecc1a606b2232f65aa0d2ef15c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616717363",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173110323": {
+    "id": "gid://shopify/Product/7950173110323",
+    "title": "Siltech Grain Fabric - Color 16 | Carnegie",
+    "handle": "siltech-grain-fabric-color-16",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#934621",
+      "Brick",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132861491",
+          "sku": "DWAG-379303",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837132894259",
+          "sku": "DWAG-379303-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732841685043",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841717811",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841750579",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841783347",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841816115",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841848883",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841881651",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841914419",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841947187",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732841979955",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842012723",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842045491",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842078259",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 16",
+          "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842111027",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 16",
+          "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842143795",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#934621",
+          "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842176563",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842209331",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842242099",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630016",
+          "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842274867",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630016",
+          "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842307635",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842340403",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842373171",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842405939",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 16 | Carnegie",
+          "compareDigest": "c8ff9d1d8a229561242a4bec45856a6cd37b7d8386715d03feefbc7190b7bc8b"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136102451": {
+    "id": "gid://shopify/Product/7923136102451",
+    "title": "Carnegie Siltech Grain 17 Fabric",
+    "handle": "carnegie-siltech-grain-sienna",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630017",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Rust",
+      "Sienna",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753422417971",
+          "sku": "DWAG-379304",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753422450739",
+          "sku": "DWAG-379304-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165403799603",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630017",
+          "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165403832371",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630017",
+          "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165403865139",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955547187",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955579955",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955612723",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955645491",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955678259",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955711027",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955743795",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955776563",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955809331",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955842099",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955874867",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955907635",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955940403",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Sienna",
+          "compareDigest": "9161801f7af78f80aab01cec3744a9f4e834727910ffcfd68885856a29f531b1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165955973171",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 17",
+          "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956005939",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#A65421",
+          "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956038707",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956071475",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956104243",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956137011",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956169779",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956202547",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956235315",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Rust | Carnegie",
+          "compareDigest": "d763197b6832d145d037dd68e062c8183691b640ff40c75b7a9cc2ce594ee7f4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667887667",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Sienna",
+          "compareDigest": "9161801f7af78f80aab01cec3744a9f4e834727910ffcfd68885856a29f531b1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180667920435",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#A65421",
+          "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183696732211",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#A65421",
+          "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853881395",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379304",
+          "compareDigest": "b4e0018499c550513f5ca90e1803e00329cd725c48cb097eb1cced520caa18fd"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853914163",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853946931",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403853979699",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854209075",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854241843",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409408811059",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630017\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "7559fffca776476201485500c68fa144c7266ab6a64a07c31210ec6bae1efd39"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485922355",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630017",
+          "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485955123",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457485987891",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486020659",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486053427",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486086195",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486118963",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486151731",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486184499",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486217267",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486250035",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486282803",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486315571",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486348339",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486381107",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486413875",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486446643",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486479411",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486512179",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486544947",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436006451",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616815667",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379304",
+          "compareDigest": "b4e0018499c550513f5ca90e1803e00329cd725c48cb097eb1cced520caa18fd"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616848435",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173175859": {
+    "id": "gid://shopify/Product/7950173175859",
+    "title": "Siltech Grain Fabric - Color 17 | Carnegie",
+    "handle": "siltech-grain-fabric-color-17",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#A65421",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Rust",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837132992563",
+          "sku": "DWAG-379304",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133025331",
+          "sku": "DWAG-379304-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732842700851",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842733619",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842766387",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842799155",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842831923",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842864691",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842897459",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842930227",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842962995",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732842995763",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843028531",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843061299",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843094067",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 17",
+          "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843126835",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 17",
+          "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843159603",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#A65421",
+          "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843192371",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843225139",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843257907",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630017",
+          "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843290675",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630017",
+          "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843323443",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843356211",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843388979",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843421747",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 17 | Carnegie",
+          "compareDigest": "5f2743c8704e1763cc471e34f22b390cfdf22c10a7c3b90b488eb71868ddba87"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136266291": {
+    "id": "gid://shopify/Product/7923136266291",
+    "title": "Carnegie Siltech Grain 18 Fabric",
+    "handle": "carnegie-siltech-grain-camel",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630018",
+      "Camel",
+      "Carnegie",
+      "display_variant",
+      "Honey",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753422712883",
+          "sku": "DWAG-379305",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753422745651",
+          "sku": "DWAG-379305-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165404586035",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630018",
+          "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165404618803",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630018",
+          "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165404651571",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956431923",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956464691",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956497459",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956530227",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956562995",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956595763",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956628531",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956661299",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956694067",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956726835",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956759603",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956792371",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956825139",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Camel",
+          "compareDigest": "0678d1dee0e2362af2b9da87d9bf10f9f463de3dba6329a2e9f872212178658e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956857907",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 18",
+          "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956890675",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#C88A43",
+          "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956923443",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956956211",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165956988979",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957021747",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957054515",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957087283",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957120051",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Honey | Carnegie",
+          "compareDigest": "bf66497022a80ccbb246a29daacd73cbef9fb02a651c7eadcd487f6d7a3ef6e1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668051507",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Camel",
+          "compareDigest": "0678d1dee0e2362af2b9da87d9bf10f9f463de3dba6329a2e9f872212178658e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668084275",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#C88A43",
+          "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183696830515",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#C88A43",
+          "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854274611",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379305",
+          "compareDigest": "2a15e9c56ec2087da7a41239f3462710999fa2610e75a8e7976f9e62885cd951"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854307379",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854340147",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854372915",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854405683",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854438451",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409408909363",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630018\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "ab7a3bdd87d8045fc7477816339208b9f6bb32cb70b79d95385a710132d38ea6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486577715",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630018",
+          "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486610483",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486643251",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486676019",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486708787",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486741555",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486774323",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486807091",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486839859",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486872627",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486905395",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486938163",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457486970931",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487003699",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487036467",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487069235",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487102003",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487134771",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487167539",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487200307",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436235827",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616881203",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379305",
+          "compareDigest": "2a15e9c56ec2087da7a41239f3462710999fa2610e75a8e7976f9e62885cd951"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546616913971",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173241395": {
+    "id": "gid://shopify/Product/7950173241395",
+    "title": "Siltech Grain Fabric - Color 18 | Carnegie",
+    "handle": "siltech-grain-fabric-color-18",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#C88A43",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "Honey",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133123635",
+          "sku": "DWAG-379305",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133156403",
+          "sku": "DWAG-379305-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732843749427",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843782195",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843814963",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843847731",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843880499",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843913267",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843946035",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732843978803",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844011571",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844044339",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844077107",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844109875",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844142643",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 18",
+          "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844175411",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 18",
+          "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844208179",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#C88A43",
+          "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844240947",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844273715",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844306483",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630018",
+          "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844339251",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630018",
+          "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844372019",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844404787",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844437555",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844470323",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 18 | Carnegie",
+          "compareDigest": "7ea5e1a2b97c2569a05797dbe5777bbfab12147d80644855c7c9dd5f98409e43"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136397363": {
+    "id": "gid://shopify/Product/7923136397363",
+    "title": "Carnegie Siltech Grain 19 Fabric",
+    "handle": "carnegie-siltech-grain-wheat",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630019",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Oatmeal",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm",
+      "Wheat"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753423007795",
+          "sku": "DWAG-379306",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753423040563",
+          "sku": "DWAG-379306-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165405503539",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630019",
+          "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165405536307",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630019",
+          "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165405569075",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957283891",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957316659",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957349427",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957382195",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957414963",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957447731",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957480499",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957513267",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957546035",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957578803",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957611571",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957644339",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957677107",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Wheat",
+          "compareDigest": "93c9b6501de092664987def37bd9b839457255e45fe1c3572e8845b7b6ede41f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957709875",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 19",
+          "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957742643",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#E9CEA4",
+          "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957775411",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957808179",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957840947",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957873715",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957906483",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957939251",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165957972019",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Oatmeal 06 | Carnegie",
+          "compareDigest": "c2acc202921c70b6ecb82e2f6730b001433812933f3e51d9a48619d3e2624868"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668280883",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Wheat",
+          "compareDigest": "93c9b6501de092664987def37bd9b839457255e45fe1c3572e8845b7b6ede41f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668313651",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#E9CEA4",
+          "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183696928819",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#E9CEA4",
+          "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854471219",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379306",
+          "compareDigest": "56eeb2ce44a1ee72797813325f956543466d9609c7eeb07eef45c433cecba6c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854503987",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854536755",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854569523",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854602291",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854635059",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409408974899",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630019\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "47497d6d9b60ffb9a6dd8e89c0521568b5608b2b3d2f77f569353c3a565753b9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487233075",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630019",
+          "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487265843",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487298611",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487331379",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487364147",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487396915",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487429683",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487462451",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487495219",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487527987",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487560755",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487593523",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487626291",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487659059",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487691827",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487724595",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487757363",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487790131",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487822899",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487855667",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436465203",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546617733171",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379306",
+          "compareDigest": "56eeb2ce44a1ee72797813325f956543466d9609c7eeb07eef45c433cecba6c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546617765939",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173339699": {
+    "id": "gid://shopify/Product/7950173339699",
+    "title": "Siltech Grain Fabric - Color 19 | Carnegie",
+    "handle": "siltech-grain-fabric-color-19",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#E9CEA4",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Oatmeal",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133287475",
+          "sku": "DWAG-379306",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133320243",
+          "sku": "DWAG-379306-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732844666931",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844699699",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844732467",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844765235",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844798003",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844830771",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844863539",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844896307",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844929075",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844961843",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732844994611",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845027379",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845060147",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 19",
+          "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845092915",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 19",
+          "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845125683",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#E9CEA4",
+          "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845158451",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845191219",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845223987",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630019",
+          "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845256755",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630019",
+          "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845289523",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845322291",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845355059",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845387827",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 19 | Carnegie",
+          "compareDigest": "3fcd189fa5dd6b412b20583fc97f69574f47a7032a8aabbeaf0c0e14b62daa72"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923134791731": {
+    "id": "gid://shopify/Product/7923134791731",
+    "title": "Carnegie Siltech Grain 2 Fabric",
+    "handle": "carnegie-siltech-grain-oatmeal",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63002",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Oatmeal",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753419894835",
+          "sku": "DWAG-379307",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753419927603",
+          "sku": "DWAG-379307-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165390856243",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63002",
+          "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165390889011",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63002",
+          "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165390921779",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165942997043",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943029811",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943062579",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943095347",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943128115",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943160883",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943193651",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943226419",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943259187",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943291955",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943324723",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943357491",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943390259",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Oatmeal",
+          "compareDigest": "d8b4f071f4bbd91641b405242f864733ec8b43390620262393a8e3969ec2852d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943423027",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 2",
+          "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943455795",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#DBCCB4",
+          "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943488563",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943521331",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943554099",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943586867",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943619635",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943652403",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943685171",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Oatmeal 07 | Carnegie",
+          "compareDigest": "1aa9f0e518fefb37c5a9d191a2b0ad3802735022cc05fe7b1f609094e28ccfa4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663136307",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Oatmeal",
+          "compareDigest": "d8b4f071f4bbd91641b405242f864733ec8b43390620262393a8e3969ec2852d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663169075",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#DBCCB4",
+          "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183691620403",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#DBCCB4",
+          "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847491635",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379307",
+          "compareDigest": "ef57f16294896f6003762e20f8a40dd82e9f343e6782810fe320b88caa6c3f13"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847524403",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847557171",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847589939",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847622707",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847655475",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409234026547",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63002\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "605cff385afdd822b9e422ee0a85e04846e41eefb95e1dd405de646065e00b17"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471012915",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63002",
+          "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471045683",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471078451",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471111219",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471143987",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471176755",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471209523",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471242291",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471275059",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471307827",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471340595",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471373363",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471406131",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471438899",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471471667",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471504435",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471537203",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471569971",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471602739",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457471635507",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37458368659507",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546614915123",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379307",
+          "compareDigest": "ef57f16294896f6003762e20f8a40dd82e9f343e6782810fe320b88caa6c3f13"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546614947891",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173372467": {
+    "id": "gid://shopify/Product/7950173372467",
+    "title": "Siltech Grain Fabric - Color 2 | Carnegie",
+    "handle": "siltech-grain-fabric-color-2",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#DBCCB4",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Oatmeal",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133385779",
+          "sku": "DWAG-379307",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133418547",
+          "sku": "DWAG-379307-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732845748275",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845781043",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845813811",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845846579",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845879347",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845912115",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845944883",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732845977651",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846010419",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846043187",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846075955",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846108723",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846141491",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 2",
+          "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846174259",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 2",
+          "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846207027",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#DBCCB4",
+          "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846239795",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846272563",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846305331",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63002",
+          "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846338099",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63002",
+          "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846370867",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846403635",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846436403",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846469171",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 2 | Carnegie",
+          "compareDigest": "10da2f8f0217b60874f6c5a640e8a5ce76131758cee311f2357ed5d79566e1de"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136528435": {
+    "id": "gid://shopify/Product/7923136528435",
+    "title": "Carnegie Siltech Grain 20 Fabric",
+    "handle": "carnegie-siltech-grain-cream",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630020",
+      "Bone",
+      "Carnegie",
+      "Cream",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753423302707",
+          "sku": "DWAG-379308",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753423335475",
+          "sku": "DWAG-379308-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165406486579",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630020",
+          "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165406519347",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630020",
+          "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165406552115",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958070323",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958103091",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958135859",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958168627",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958201395",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958234163",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958266931",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958299699",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958332467",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958365235",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958398003",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958430771",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958463539",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Cream",
+          "compareDigest": "1b5e9501b23e07acad3cef4da8da85da5473653984d463ce5f03dacb5507dbbe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958496307",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 20",
+          "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958529075",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#E6D5B2",
+          "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958561843",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958594611",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958627379",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958660147",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958692915",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958725683",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958758451",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Bone | Carnegie",
+          "compareDigest": "196afa26e1a5aa00bd4cd41fffced2f9c345d6800f523274faad2bf963e1aad1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668444723",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Cream",
+          "compareDigest": "1b5e9501b23e07acad3cef4da8da85da5473653984d463ce5f03dacb5507dbbe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668477491",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#E6D5B2",
+          "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183697256499",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#E6D5B2",
+          "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854667827",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379308",
+          "compareDigest": "aea560f4f8db953f26e762f7b11740c161ae4a91488c83e1c0aba9ae27c68207"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854700595",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854733363",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854766131",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854798899",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854831667",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409409204275",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630020\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "e6ae6cf358b76f0ebfb3690ee8340401451bc85f4357c5f651fddd045808b27f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487888435",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630020",
+          "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487921203",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487953971",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457487986739",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488019507",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488052275",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488085043",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488117811",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488150579",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488183347",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488216115",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488248883",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488281651",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488314419",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488347187",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488379955",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488412723",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488445491",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488478259",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488511027",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436563507",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546617798707",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379308",
+          "compareDigest": "aea560f4f8db953f26e762f7b11740c161ae4a91488c83e1c0aba9ae27c68207"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546617831475",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173438003": {
+    "id": "gid://shopify/Product/7950173438003",
+    "title": "Siltech Grain Fabric - Color 20 | Carnegie",
+    "handle": "siltech-grain-fabric-color-20",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#E6D5B2",
+      "Bone",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133484083",
+          "sku": "DWAG-379308",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133516851",
+          "sku": "DWAG-379308-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732846665779",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846698547",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846731315",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846764083",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846796851",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846829619",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846862387",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846895155",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846927923",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846960691",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732846993459",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847026227",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847058995",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 20",
+          "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847091763",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 20",
+          "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847124531",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#E6D5B2",
+          "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847157299",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847190067",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847222835",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630020",
+          "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847255603",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630020",
+          "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847288371",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847321139",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847353907",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847386675",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 20 | Carnegie",
+          "compareDigest": "02b04c05304b165722b472ff7dcd85ed630abbab45346367a8adc9459cb41351"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136692275": {
+    "id": "gid://shopify/Product/7923136692275",
+    "title": "Carnegie Siltech Grain 21 Fabric",
+    "handle": "carnegie-siltech-grain-honey",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630021",
+      "Carnegie",
+      "display_variant",
+      "Honey",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Tan",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753423564851",
+          "sku": "DWAG-379309",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753423597619",
+          "sku": "DWAG-379309-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165407273011",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630021",
+          "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165407305779",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630021",
+          "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165407338547",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958922291",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958955059",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165958987827",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959020595",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959053363",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959086131",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959118899",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959151667",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959184435",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959217203",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959249971",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959282739",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959315507",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Honey",
+          "compareDigest": "0866fbf676d72dc089b6d926cf1da7c6ec4c5ed5ec1ed879c67224900af9893f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959348275",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 21",
+          "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959381043",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#C49E66",
+          "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959413811",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959446579",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959479347",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959512115",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959544883",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959577651",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959610419",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Tan | Carnegie",
+          "compareDigest": "abeb34ee4c0928c9b89141b022235adcaf70562a4c6c44bc9cf1c7a6e7413f16"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668674099",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Honey",
+          "compareDigest": "0866fbf676d72dc089b6d926cf1da7c6ec4c5ed5ec1ed879c67224900af9893f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668706867",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#C49E66",
+          "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183697420339",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#C49E66",
+          "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854864435",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379309",
+          "compareDigest": "5eab40cb45391f22a5c0d1d94f47b9cc6760539382414f9102e0b0ca826a52aa"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854897203",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854929971",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854962739",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403854995507",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855061043",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409409269811",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630021\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "478ab8b2d7fffb44a15bb46d95372db07869d8e9fc365af08c69b2227e235319"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488543795",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630021",
+          "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488576563",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488609331",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488642099",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488674867",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488707635",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488740403",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488773171",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488805939",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488838707",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488871475",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488904243",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488937011",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457488969779",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489002547",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489035315",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489068083",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489100851",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489133619",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489166387",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436596275",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618028083",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379309",
+          "compareDigest": "5eab40cb45391f22a5c0d1d94f47b9cc6760539382414f9102e0b0ca826a52aa"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618060851",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173503539": {
+    "id": "gid://shopify/Product/7950173503539",
+    "title": "Siltech Grain Fabric - Color 21 | Carnegie",
+    "handle": "siltech-grain-fabric-color-21",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#C49E66",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Tan",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133647923",
+          "sku": "DWAG-379309",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133680691",
+          "sku": "DWAG-379309-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732847517747",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847550515",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847583283",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847616051",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847648819",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847681587",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847714355",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847747123",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847779891",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847812659",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847845427",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847878195",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847910963",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 21",
+          "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847943731",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 21",
+          "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732847976499",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#C49E66",
+          "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848009267",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848042035",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848074803",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630021",
+          "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848107571",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630021",
+          "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848140339",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848173107",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848205875",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848238643",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 21 | Carnegie",
+          "compareDigest": "4e350256fdfe73292e1c8aa640dbb3306184d6f6e3ffdd3b364aab53b0b034b3"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136823347": {
+    "id": "gid://shopify/Product/7923136823347",
+    "title": "Carnegie Siltech Grain 22 Fabric",
+    "handle": "carnegie-siltech-grain-khaki",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630022",
+      "Bronze",
+      "Carnegie",
+      "display_variant",
+      "Khaki",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753423826995",
+          "sku": "DWAG-379310",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753423859763",
+          "sku": "DWAG-379310-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165408026675",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630022",
+          "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165408059443",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630022",
+          "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165408092211",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959643187",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959675955",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959708723",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959741491",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959774259",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959807027",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959839795",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959872563",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959905331",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959938099",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165959970867",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960003635",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960036403",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Khaki",
+          "compareDigest": "3bc5d9a84ab42b9dd89a5fd4ec64baaeae033bcbb833b5e2cfec64056c927a7a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960069171",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 22",
+          "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960101939",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#8E7759",
+          "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960134707",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960167475",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960200243",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960233011",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960265779",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960298547",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960331315",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Bronze | Carnegie",
+          "compareDigest": "b5ea3d416599caefb8258feddb1557948f458d849c2640d037614429606d8223"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668837939",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Khaki",
+          "compareDigest": "3bc5d9a84ab42b9dd89a5fd4ec64baaeae033bcbb833b5e2cfec64056c927a7a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180668870707",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#8E7759",
+          "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183698075699",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#8E7759",
+          "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855093811",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379310",
+          "compareDigest": "74c8745f5f30d61f7e0ca612c9ad4ec5836a97dd1eb890cc50a563fdcaa22928"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855126579",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855159347",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855192115",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855224883",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855257651",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409409466419",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630022\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "5a996bacbdf6269fdc7a2e4c5c8ef8be763a7ff6f104914358a40c3b69837389"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489199155",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630022",
+          "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489231923",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489264691",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489297459",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489330227",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489362995",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489395763",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489428531",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489461299",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489494067",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489526835",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489559603",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489592371",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489625139",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489657907",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489690675",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489723443",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489756211",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489788979",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489821747",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436694579",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618126387",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379310",
+          "compareDigest": "74c8745f5f30d61f7e0ca612c9ad4ec5836a97dd1eb890cc50a563fdcaa22928"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618159155",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173569075": {
+    "id": "gid://shopify/Product/7950173569075",
+    "title": "Siltech Grain Fabric - Color 22 | Carnegie",
+    "handle": "siltech-grain-fabric-color-22",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#8E7759",
+      "Bronze",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133778995",
+          "sku": "DWAG-379310",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133811763",
+          "sku": "DWAG-379310-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732848566323",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848599091",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848631859",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848664627",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848697395",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848730163",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848762931",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848795699",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848828467",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848861235",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848894003",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848926771",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848959539",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 22",
+          "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732848992307",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 22",
+          "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849025075",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#8E7759",
+          "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849057843",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849090611",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849123379",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630022",
+          "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849156147",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630022",
+          "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849188915",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849221683",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849254451",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849287219",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 22 | Carnegie",
+          "compareDigest": "b99764be3750bfae3112a9ec2a6440c9678f741a16a6a9d7f5c18f7e6e62c9f7"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923136987187": {
+    "id": "gid://shopify/Product/7923136987187",
+    "title": "Carnegie Siltech Grain 23 Fabric",
+    "handle": "carnegie-siltech-grain-fawn",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630023",
+      "Carnegie",
+      "display_variant",
+      "Fawn",
+      "Leather-Look",
+      "Olive",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753424154675",
+          "sku": "DWAG-379311",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753424187443",
+          "sku": "DWAG-379311-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165409042483",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630023",
+          "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165409075251",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630023",
+          "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165409108019",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960462387",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960495155",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960527923",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960560691",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960593459",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960626227",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960658995",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960691763",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960724531",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960757299",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960790067",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960822835",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960855603",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Fawn",
+          "compareDigest": "bfe57f98fef4a621ef72c334fda6183e06b3fed6a5a0fd29fada4fe079564b1a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960888371",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 23",
+          "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960921139",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#7F6B47",
+          "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960953907",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165960986675",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961019443",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961052211",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961084979",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961117747",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961150515",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Olive | Carnegie",
+          "compareDigest": "d4006e2eef976b9adc697ad82fc12f5ec0b7d527579c692988a772c8f3b5271a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180669853747",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Fawn",
+          "compareDigest": "bfe57f98fef4a621ef72c334fda6183e06b3fed6a5a0fd29fada4fe079564b1a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180669886515",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#7F6B47",
+          "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183698436147",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#7F6B47",
+          "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855290419",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379311",
+          "compareDigest": "7d10e6bac101b6c31d4637c70b1cf013fb4bfba11d2f55c7ea112931323d94fa"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855323187",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855355955",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855388723",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855421491",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855454259",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409409499187",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630023\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "4b7ea0b7ef87646f12e2f98040ca9d5b4d19a1d0ea7c0e173091e6ada247907e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489887283",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630023",
+          "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489920051",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489952819",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457489985587",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490018355",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490051123",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490083891",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490116659",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490149427",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490182195",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490214963",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490247731",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490280499",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490313267",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490346035",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490378803",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490411571",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490444339",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490477107",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490509875",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436792883",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618191923",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379311",
+          "compareDigest": "7d10e6bac101b6c31d4637c70b1cf013fb4bfba11d2f55c7ea112931323d94fa"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618224691",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173634611": {
+    "id": "gid://shopify/Product/7950173634611",
+    "title": "Siltech Grain Fabric - Color 23 | Carnegie",
+    "handle": "siltech-grain-fabric-color-23",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#7F6B47",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Olive",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837133877299",
+          "sku": "DWAG-379311",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837133910067",
+          "sku": "DWAG-379311-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732849942579",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732849975347",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850008115",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850040883",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850073651",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850106419",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850139187",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850171955",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850204723",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850237491",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850270259",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850303027",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850335795",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 23",
+          "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850368563",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 23",
+          "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850401331",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#7F6B47",
+          "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850434099",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850466867",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850499635",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630023",
+          "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850532403",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630023",
+          "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850565171",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850597939",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850630707",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732850663475",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 23 | Carnegie",
+          "compareDigest": "42543f14b1b1b49a250f175b2bf0d2e6e888cda9f749a1824e3b3cfeb180050f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923137216563": {
+    "id": "gid://shopify/Product/7923137216563",
+    "title": "Carnegie Siltech Grain 24 Fabric",
+    "handle": "carnegie-siltech-grain-chestnut",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630024",
+      "Carnegie",
+      "Chestnut",
+      "Cognac",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753424482355",
+          "sku": "DWAG-379312",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753424515123",
+          "sku": "DWAG-379312-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165409730611",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630024",
+          "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165409763379",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630024",
+          "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165409796147",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961281587",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961314355",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961347123",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961379891",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961412659",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961445427",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961478195",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961510963",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961543731",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961576499",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961609267",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961642035",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961674803",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Chestnut",
+          "compareDigest": "1b1f493bbdc04a3c7812797768b4b66b6f01ecf8f0603e66719e88990e45b604"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961707571",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 24",
+          "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961740339",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#805E39",
+          "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961773107",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961805875",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961838643",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961871411",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961904179",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961936947",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165961969715",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Cognac | Carnegie",
+          "compareDigest": "3d3aadf1a08dca1d6d6265065403a350efafac8e14d42c06fe3f9538870bf021"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670246963",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Chestnut",
+          "compareDigest": "1b1f493bbdc04a3c7812797768b4b66b6f01ecf8f0603e66719e88990e45b604"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670279731",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#805E39",
+          "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183698632755",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#805E39",
+          "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855487027",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379312",
+          "compareDigest": "2869af0cba6ba25144c5d317a7e2f1ed39ed71ab4c1b78bcb562b076864c58ca"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855519795",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855552563",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855585331",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855618099",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855650867",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409409663027",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630024\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "fca016080085843e3c42ca02ca98037b9c33ac8005c19fbeaadaa1a124c01aa4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490706483",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630024",
+          "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490739251",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490772019",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490804787",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490837555",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490870323",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490903091",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490935859",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457490968627",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491001395",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491034163",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491066931",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491099699",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491132467",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491165235",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491198003",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491230771",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491263539",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491296307",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491329075",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461436923955",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618257459",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379312",
+          "compareDigest": "2869af0cba6ba25144c5d317a7e2f1ed39ed71ab4c1b78bcb562b076864c58ca"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618290227",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173700147": {
+    "id": "gid://shopify/Product/7950173700147",
+    "title": "Siltech Grain Fabric - Color 24 | Carnegie",
+    "handle": "siltech-grain-fabric-color-24",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#805E39",
+      "Carnegie",
+      "Cognac",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134008371",
+          "sku": "DWAG-379312",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134041139",
+          "sku": "DWAG-379312-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732851449907",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851482675",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851515443",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851548211",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851580979",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851613747",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851646515",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851679283",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851712051",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851744819",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851777587",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851810355",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851843123",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 24",
+          "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851875891",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 24",
+          "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851908659",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#805E39",
+          "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851941427",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732851974195",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852006963",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630024",
+          "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852039731",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630024",
+          "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852072499",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852105267",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852138035",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732852170803",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 24 | Carnegie",
+          "compareDigest": "d3e93abf04eba76c707661006372333149e865491d4ee697f5c75538674a6dbc"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923137347635": {
+    "id": "gid://shopify/Product/7923137347635",
+    "title": "Carnegie Siltech Grain 25 Fabric",
+    "handle": "carnegie-siltech-grain-cocoa",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630025",
+      "Carnegie",
+      "Cocoa",
+      "display_variant",
+      "Leather-Look",
+      "Saddle",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753424711731",
+          "sku": "DWAG-379313",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753424744499",
+          "sku": "DWAG-379313-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165410615347",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630025",
+          "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165410648115",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630025",
+          "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165410680883",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962068019",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962100787",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962133555",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962166323",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962199091",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962231859",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962264627",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962297395",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962330163",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962362931",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962395699",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962428467",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962461235",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Cocoa",
+          "compareDigest": "838aa664cdf1fceac3bc377992d3279f7fc0b4efc24ade5f1509e256087f19f6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962494003",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 25",
+          "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962526771",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#69513C",
+          "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962559539",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962592307",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962625075",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962657843",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962690611",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962723379",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962756147",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Saddle | Carnegie",
+          "compareDigest": "dc6e8506520a05be445e09cafa9e58367c5c00c09cd24155e0272ab3eae1ee5e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670672947",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Cocoa",
+          "compareDigest": "838aa664cdf1fceac3bc377992d3279f7fc0b4efc24ade5f1509e256087f19f6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670705715",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#69513C",
+          "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183699451955",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#69513C",
+          "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855683635",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379313",
+          "compareDigest": "fb1e292dbbff2614e2c94e75f4b79f35f159fd94063abcd90bd7d23c434d8598"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855716403",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855749171",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855781939",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855814707",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403855847475",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409410351155",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630025\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "e61a661163e47aac99bc670ff28bff64a0f32b5aa5c8fe28c0622aca9512b7b2"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491361843",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630025",
+          "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491394611",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491427379",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491460147",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491492915",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491525683",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491558451",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491591219",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491623987",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491656755",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491689523",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491722291",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491755059",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491787827",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491820595",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491853363",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491886131",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491918899",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491951667",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457491984435",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461437317171",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618585139",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379313",
+          "compareDigest": "fb1e292dbbff2614e2c94e75f4b79f35f159fd94063abcd90bd7d23c434d8598"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618617907",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173765683": {
+    "id": "gid://shopify/Product/7950173765683",
+    "title": "Siltech Grain Fabric - Color 25 | Carnegie",
+    "handle": "siltech-grain-fabric-color-25",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#69513C",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Saddle",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134172211",
+          "sku": "DWAG-379313",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134204979",
+          "sku": "DWAG-379313-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732853252147",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853284915",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853317683",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853350451",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853383219",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853415987",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853448755",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853481523",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853514291",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853547059",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853579827",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853612595",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853645363",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 25",
+          "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853678131",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 25",
+          "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853710899",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#69513C",
+          "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853743667",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853776435",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853809203",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630025",
+          "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853841971",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630025",
+          "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853874739",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853907507",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853940275",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732853973043",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 25 | Carnegie",
+          "compareDigest": "de4ff4a569aeb29adf29b0973ec4f720fd3985520a9df05eeb856f255a3f74a8"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923139936307": {
+    "id": "gid://shopify/Product/7923139936307",
+    "title": "Carnegie Siltech Grain 26 Fabric",
+    "handle": "carnegie-siltech-grain-walnut",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "630026",
+      "Carnegie",
+      "Chestnut",
+      "display_variant",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Walnut",
+      "Warm"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753429725235",
+          "sku": "DWAG-379314",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753429758003",
+          "sku": "DWAG-379314-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165432832051",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630026",
+          "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165432864819",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630026",
+          "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165432897587",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962919987",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962952755",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165962985523",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963018291",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963051059",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963083827",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963116595",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963149363",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963182131",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963214899",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963247667",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963280435",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963313203",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Walnut",
+          "compareDigest": "1a40735ac9fd0876b26aab8e714e7ee40cbbd2d24d1a3025265d6e0df9cf4c34"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963345971",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 26",
+          "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963378739",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#624E3C",
+          "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963411507",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963444275",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963477043",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963509811",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963542579",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963575347",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165963608115",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Chestnut | Carnegie",
+          "compareDigest": "89ce33030afbd49d0e99fe421ec02e96ac2339da58781149a07b0ec0cc64fdcd"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670869555",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Walnut",
+          "compareDigest": "1a40735ac9fd0876b26aab8e714e7ee40cbbd2d24d1a3025265d6e0df9cf4c34"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180670902323",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#624E3C",
+          "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183699648563",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#624E3C",
+          "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856011315",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379314",
+          "compareDigest": "33390e91f6c707633a25ba730f0faffb44624bc2f40b204179cb1a9a635a5813"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856044083",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856076851",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856109619",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856142387",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403856175155",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409410416691",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630026\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "6fb4edcab4bd17fd7fd7e043682558285115f51eb3b672c3845af51b241a2475"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492049971",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "630026",
+          "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492082739",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492115507",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492148275",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492181043",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492213811",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492246579",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492279347",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492312115",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492344883",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492377651",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492410419",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492443187",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492475955",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492508723",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492541491",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492574259",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492607027",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492639795",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457492672563",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461437513779",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618781747",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379314",
+          "compareDigest": "33390e91f6c707633a25ba730f0faffb44624bc2f40b204179cb1a9a635a5813"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546618814515",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173798451": {
+    "id": "gid://shopify/Product/7950173798451",
+    "title": "Siltech Grain Fabric - Color 26 | Carnegie",
+    "handle": "siltech-grain-fabric-color-26",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#624E3C",
+      "Carnegie",
+      "Chestnut",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134237747",
+          "sku": "DWAG-379314",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134270515",
+          "sku": "DWAG-379314-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732854267955",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854300723",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854333491",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854366259",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854399027",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854431795",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854464563",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854497331",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854530099",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854562867",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854595635",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854628403",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854661171",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 26",
+          "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854693939",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 26",
+          "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854726707",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#624E3C",
+          "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854759475",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854792243",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854825011",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630026",
+          "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854857779",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "630026",
+          "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854890547",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854923315",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854956083",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732854988851",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 26 | Carnegie",
+          "compareDigest": "c32d7434d685bf5ecf277813db3df881ede0927379b6f28f1616652e067ee83b"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923134857267": {
+    "id": "gid://shopify/Product/7923134857267",
+    "title": "Carnegie Siltech Grain 3 Fabric",
+    "handle": "carnegie-siltech-grain-taupe",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63003",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Neutral",
+      "Siltech Grain",
+      "split-batch:TK-10686",
+      "Taupe"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420025907",
+          "sku": "DWAG-379315",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420058675",
+          "sku": "DWAG-379315-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165391544371",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63003",
+          "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165391577139",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63003",
+          "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165391609907",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943914547",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943947315",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165943980083",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944012851",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944045619",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944078387",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944111155",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944143923",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944176691",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944209459",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944242227",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944274995",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944307763",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Taupe",
+          "compareDigest": "cf3c62ad972a64b1cd53e5d0e008a0a379c961e9293692d555042bd6cd185abe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944340531",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 3",
+          "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944373299",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#989281",
+          "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944406067",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944438835",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944471603",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944504371",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944537139",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944569907",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944602675",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Taupe | Carnegie",
+          "compareDigest": "7ceb96520285f08d289ed1d054363634e9aebce8586bfb8211ffc83663793dbe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663693363",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Taupe",
+          "compareDigest": "cf3c62ad972a64b1cd53e5d0e008a0a379c961e9293692d555042bd6cd185abe"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663726131",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#989281",
+          "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183691784243",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#989281",
+          "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847688243",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379315",
+          "compareDigest": "85822703376b596266fb8e26c807743b89f2ed63413b25915d926dd6b3a2ba43"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847721011",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847753779",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847786547",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847819315",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847852083",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409234190387",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63003\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "c66e8add0fcb04fe55ce7760e2ff39f92eef16cf90231590ed1e721d89be24f9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476288563",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63003",
+          "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476321331",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476354099",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476386867",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476419635",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476452403",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476485171",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476517939",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476550707",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476583475",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476616243",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476649011",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476681779",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476714547",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476747315",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476780083",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476812851",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476845619",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476878387",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476911155",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461432959027",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546614980659",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379315",
+          "compareDigest": "85822703376b596266fb8e26c807743b89f2ed63413b25915d926dd6b3a2ba43"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615013427",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173896755": {
+    "id": "gid://shopify/Product/7950173896755",
+    "title": "Siltech Grain Fabric - Color 3 | Carnegie",
+    "handle": "siltech-grain-fabric-color-3",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#989281",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Taupe",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134467123",
+          "sku": "DWAG-379315",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134499891",
+          "sku": "DWAG-379315-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732855316531",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855349299",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855382067",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855414835",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855447603",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855480371",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855513139",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855545907",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855578675",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855611443",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855644211",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855676979",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855709747",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 3",
+          "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855742515",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 3",
+          "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855775283",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#989281",
+          "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855808051",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855840819",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855873587",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63003",
+          "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855906355",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63003",
+          "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855939123",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732855971891",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856004659",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856037427",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 3 | Carnegie",
+          "compareDigest": "261330efe267e12eb277ffb3894c3207c1d9867cfb9c0ad6e9acddf1718501f0"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923134955571": {
+    "id": "gid://shopify/Product/7923134955571",
+    "title": "Carnegie Siltech Grain 4 Fabric",
+    "handle": "carnegie-siltech-grain-loden",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63004",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Loden",
+      "Moss",
+      "Neutral",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420222515",
+          "sku": "DWAG-379316",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420255283",
+          "sku": "DWAG-379316-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165392298035",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63004",
+          "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165392330803",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63004",
+          "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165392363571",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944668211",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944700979",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944733747",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944766515",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944799283",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944832051",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944864819",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944897587",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944930355",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944963123",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165944995891",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945028659",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945061427",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Loden",
+          "compareDigest": "7ff1a383d8fdf7fca29faf41dd742f1eebdec966fb544fde57e925335377913b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945094195",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 4",
+          "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945126963",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#525247",
+          "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945159731",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945192499",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945225267",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945258035",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945290803",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945323571",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945356339",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Moss | Carnegie",
+          "compareDigest": "2eb3d6ba93b4f7fc6264a099ff4e152b2d4dec75abb882218611900ba13858e0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663922739",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Loden",
+          "compareDigest": "7ff1a383d8fdf7fca29faf41dd742f1eebdec966fb544fde57e925335377913b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180663955507",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#525247",
+          "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183691980851",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#525247",
+          "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847884851",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379316",
+          "compareDigest": "f99f5a274fa43acfbd0379f0ff65cc8bf773d0d23e928fd4a0fa49ae73e153e8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847917619",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847950387",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403847983155",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848015923",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848048691",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409234255923",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63004\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "d8d74170f001ebed8711d43421e4733847ff5cf7b3bafdce28b11a8319564722"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457476976691",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63004",
+          "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477009459",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477042227",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477074995",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477107763",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477140531",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477173299",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477206067",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477238835",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477271603",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477304371",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477337139",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477369907",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477402675",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477435443",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477468211",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477500979",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477533747",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477566515",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477599283",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433122867",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615242803",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379316",
+          "compareDigest": "f99f5a274fa43acfbd0379f0ff65cc8bf773d0d23e928fd4a0fa49ae73e153e8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615275571",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173929523": {
+    "id": "gid://shopify/Product/7950173929523",
+    "title": "Siltech Grain Fabric - Color 4 | Carnegie",
+    "handle": "siltech-grain-fabric-color-4",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#525247",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "Moss",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134532659",
+          "sku": "DWAG-379316",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134565427",
+          "sku": "DWAG-379316-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732856856627",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856889395",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856922163",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856954931",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732856987699",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857020467",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857053235",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857086003",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857118771",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857151539",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857184307",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857217075",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857249843",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 4",
+          "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857282611",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 4",
+          "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857315379",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#525247",
+          "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857348147",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857380915",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857413683",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63004",
+          "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857446451",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63004",
+          "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857479219",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857511987",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857544755",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732857577523",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 4 | Carnegie",
+          "compareDigest": "b62d9918355a4be8631a9edcff2deef8934a4188dc8cf30a0e7e33fafdadb9e7"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135021107": {
+    "id": "gid://shopify/Product/7923135021107",
+    "title": "Carnegie Siltech Grain 5 Fabric",
+    "handle": "carnegie-siltech-grain-espresso",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63005",
+      "Carnegie",
+      "Dark",
+      "display_variant",
+      "Espresso",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420353587",
+          "sku": "DWAG-379317",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420386355",
+          "sku": "DWAG-379317-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165392855091",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63005",
+          "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165392887859",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63005",
+          "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165392920627",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945487411",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945520179",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945552947",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945585715",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945618483",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945651251",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945684019",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945716787",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945749555",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945782323",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945815091",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945847859",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945880627",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Espresso",
+          "compareDigest": "e8571d9b180e3c7ab97f4b341e06e00ab009499f624bb9b2edbca815146cf1c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945913395",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 5",
+          "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945946163",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#2C251F",
+          "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165945978931",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946011699",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946044467",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946077235",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946110003",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946142771",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946175539",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Espresso 17 | Carnegie",
+          "compareDigest": "368de8b3cc5dbeec0320e9ee0b1afa4815c954d761436e0fefad7cee0fd7c9fb"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664086579",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Espresso",
+          "compareDigest": "e8571d9b180e3c7ab97f4b341e06e00ab009499f624bb9b2edbca815146cf1c9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664119347",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#2C251F",
+          "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183692210227",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#2C251F",
+          "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848081459",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379317",
+          "compareDigest": "aeb8cbde593fe874933a52665e06746e55a20c6e07a46ee7dd52c8b85eaf4d0d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848114227",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848146995",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848179763",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848212531",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848245299",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409234616371",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63005\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "1442361befb057b229e6572ef73e5bd43f9838f5b88b280c6c317c4b255d3061"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477632051",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63005",
+          "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477664819",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477697587",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477730355",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477763123",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477795891",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477828659",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477861427",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477894195",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477926963",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477959731",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457477992499",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478025267",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478058035",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478090803",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478123571",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478156339",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478189107",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478221875",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478254643",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433319475",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615308339",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379317",
+          "compareDigest": "aeb8cbde593fe874933a52665e06746e55a20c6e07a46ee7dd52c8b85eaf4d0d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615341107",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950173995059": {
+    "id": "gid://shopify/Product/7950173995059",
+    "title": "Siltech Grain Fabric - Color 5 | Carnegie",
+    "handle": "siltech-grain-fabric-color-5",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#2C251F",
+      "Carnegie",
+      "display_variant",
+      "Espresso",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134663731",
+          "sku": "DWAG-379317",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134696499",
+          "sku": "DWAG-379317-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732858036275",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858069043",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858101811",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858134579",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858167347",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858200115",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858232883",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858265651",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858298419",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858331187",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858363955",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858396723",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858429491",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 5",
+          "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858462259",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 5",
+          "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858495027",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#2C251F",
+          "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858527795",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858560563",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858593331",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63005",
+          "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858626099",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63005",
+          "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858658867",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858691635",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858724403",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732858757171",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 5 | Carnegie",
+          "compareDigest": "23d1d461cb9103caf6f817142c2677b2b1eb6525cd4545e58bff9b2b7e7adc95"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135119411": {
+    "id": "gid://shopify/Product/7923135119411",
+    "title": "Carnegie Siltech Grain 6 Fabric",
+    "handle": "carnegie-siltech-grain-onyx",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63006",
+      "Black",
+      "Carnegie",
+      "Dark",
+      "display_variant",
+      "Leather-Look",
+      "Onyx",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420550195",
+          "sku": "DWAG-379318",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420582963",
+          "sku": "DWAG-379318-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165393739827",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63006",
+          "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165393772595",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63006",
+          "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165393805363",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946241075",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946273843",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946306611",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946339379",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946372147",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946404915",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946437683",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946470451",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946503219",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946535987",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946568755",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946601523",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946634291",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Onyx",
+          "compareDigest": "fe33d8dc532851561e8dbe4d294fcd4ec363d3c1047469f00af618fa69133e96"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946667059",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 6",
+          "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946699827",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#201E20",
+          "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946732595",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946765363",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946798131",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946830899",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946863667",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946896435",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165946929203",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Black | Carnegie",
+          "compareDigest": "7657ae1a39abd68a6aaaf35c3188dc626cd108c746a733f7a810383577126483"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664348723",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Onyx",
+          "compareDigest": "fe33d8dc532851561e8dbe4d294fcd4ec363d3c1047469f00af618fa69133e96"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664381491",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#201E20",
+          "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183692898355",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#201E20",
+          "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848278067",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379318",
+          "compareDigest": "01cfc17985b6cf6ef4893b81b14f670eb6efffb5facdb5c69a927eef9d8cac80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848310835",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848343603",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848376371",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848409139",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848441907",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407008819",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63006\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "907f45c523eb0f32c9c1d9aac00a1399bc3090a5faa1478e214d52a7da1f412f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478287411",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63006",
+          "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478320179",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478352947",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478385715",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478418483",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478451251",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478484019",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478516787",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478549555",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478582323",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478615091",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478647859",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478680627",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478713395",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478746163",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478778931",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478811699",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478844467",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478877235",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478910003",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433417779",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615373875",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379318",
+          "compareDigest": "01cfc17985b6cf6ef4893b81b14f670eb6efffb5facdb5c69a927eef9d8cac80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615406643",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950174093363": {
+    "id": "gid://shopify/Product/7950174093363",
+    "title": "Siltech Grain Fabric - Color 6 | Carnegie",
+    "handle": "siltech-grain-fabric-color-6",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#201E20",
+      "Black",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837134860339",
+          "sku": "DWAG-379318",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837134893107",
+          "sku": "DWAG-379318-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732859412531",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859445299",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859478067",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859510835",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859543603",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859576371",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859609139",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859641907",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859674675",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859707443",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859740211",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859772979",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859805747",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 6",
+          "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859838515",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 6",
+          "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859871283",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#201E20",
+          "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859904051",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859936819",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732859969587",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63006",
+          "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860002355",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63006",
+          "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860035123",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860067891",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860100659",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860133427",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 6 | Carnegie",
+          "compareDigest": "05b2cbdaf991bad97824223bb2f406cfbce9955ca509c7e99da36b390653115f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135250483": {
+    "id": "gid://shopify/Product/7923135250483",
+    "title": "Carnegie Siltech Grain 7 Fabric",
+    "handle": "carnegie-siltech-grain-ink",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63007",
+      "Carnegie",
+      "Dark",
+      "display_variant",
+      "Graphite",
+      "Ink",
+      "Leather-Look",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420681267",
+          "sku": "DWAG-379319",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420714035",
+          "sku": "DWAG-379319-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165394427955",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63007",
+          "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165394460723",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63007",
+          "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165394493491",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947158579",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947191347",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947224115",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947256883",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947289651",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947322419",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947355187",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947387955",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947420723",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947453491",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947486259",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947519027",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947551795",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Ink",
+          "compareDigest": "f6a45bf8acc6405a3d61cdf2c76185b050d610e57e5f2d4b3154fd8d1f350023"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947584563",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 7",
+          "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947617331",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#242731",
+          "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947650099",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947682867",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947715635",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947748403",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947781171",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947813939",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165947846707",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Graphite 19 | Carnegie",
+          "compareDigest": "cf7c567e2d6d7357d12f94bf862be17a31fe0599cac073f33a0cd9c9f5d77a02"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664676403",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Ink",
+          "compareDigest": "f6a45bf8acc6405a3d61cdf2c76185b050d610e57e5f2d4b3154fd8d1f350023"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664709171",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#242731",
+          "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183693127731",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#242731",
+          "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848474675",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379319",
+          "compareDigest": "f600320e39442bdb00e77bd129344ef3d6d37368d469c3afb406ebc51cbbc3ea"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848507443",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848540211",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848572979",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848605747",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848638515",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407041587",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63007\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "8c66fbfb2eb1242d5383580cc6f5f9017acc883e36aefbc06e6ec9d786be7d37"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457478975539",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63007",
+          "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479008307",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479041075",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479073843",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479106611",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479139379",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479172147",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479204915",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479237683",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479270451",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479303219",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479335987",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479368755",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479401523",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479434291",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479467059",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479499827",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479532595",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479565363",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479598131",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433516083",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615472179",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379319",
+          "compareDigest": "f600320e39442bdb00e77bd129344ef3d6d37368d469c3afb406ebc51cbbc3ea"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615504947",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950174191667": {
+    "id": "gid://shopify/Product/7950174191667",
+    "title": "Siltech Grain Fabric - Color 7 | Carnegie",
+    "handle": "siltech-grain-fabric-color-7",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#242731",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "Graphite",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837135024179",
+          "sku": "DWAG-379319",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837135056947",
+          "sku": "DWAG-379319-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732860559411",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860592179",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860624947",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860657715",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860690483",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860723251",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860756019",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860788787",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860821555",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860854323",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860887091",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860919859",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860952627",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 7",
+          "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732860985395",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 7",
+          "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861018163",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#242731",
+          "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861050931",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861083699",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861116467",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63007",
+          "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861149235",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63007",
+          "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861182003",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861214771",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861247539",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861280307",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 7 | Carnegie",
+          "compareDigest": "7bf0feb7f0a650b04fb5c190ba553dc269800f24957a24fbdb0677b354124810"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135348787": {
+    "id": "gid://shopify/Product/7923135348787",
+    "title": "Carnegie Siltech Grain 8 Fabric",
+    "handle": "carnegie-siltech-grain-navy",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63008",
+      "Carnegie",
+      "Dark",
+      "display_variant",
+      "Graphite",
+      "Leather-Look",
+      "Navy",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753420877875",
+          "sku": "DWAG-379320",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753420910643",
+          "sku": "DWAG-379320-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165395214387",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63008",
+          "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165395247155",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63008",
+          "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165395312691",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948043315",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948076083",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948108851",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948141619",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948174387",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948207155",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948239923",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948272691",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948305459",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948338227",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948370995",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948403763",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948436531",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Navy",
+          "compareDigest": "f1dea30deb3205c9da62dea64764df3d75af64e487b72208d835924a7eafecb2"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948469299",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 8",
+          "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948502067",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#1C2836",
+          "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948534835",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948567603",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948600371",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948633139",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948665907",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948698675",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948731443",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Graphite 20 | Carnegie",
+          "compareDigest": "9bdc8ec864f785aad7fe13b6470699710a3390f70551c78bb3a60f39a0c58f43"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180664971315",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Navy",
+          "compareDigest": "f1dea30deb3205c9da62dea64764df3d75af64e487b72208d835924a7eafecb2"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180665004083",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#1C2836",
+          "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183693324339",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#1C2836",
+          "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848671283",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379320",
+          "compareDigest": "c58b7a7a7da06f45cac319fa3c3f0d6881858393f1c1ebaeff949081e15c1599"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848704051",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848736819",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848769587",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848802355",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848835123",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407074355",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63008\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "8951f32f4f64423e9e1dbe014fd15d025a217ae300cc93009cbaa8da3bf07751"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479893043",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63008",
+          "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479925811",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479958579",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457479991347",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480024115",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480056883",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480089651",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480122419",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480155187",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480187955",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480220723",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480253491",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480286259",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480319027",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480351795",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480384563",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480417331",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480450099",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480482867",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480515635",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433548851",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615636019",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379320",
+          "compareDigest": "c58b7a7a7da06f45cac319fa3c3f0d6881858393f1c1ebaeff949081e15c1599"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615668787",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950174224435": {
+    "id": "gid://shopify/Product/7950174224435",
+    "title": "Siltech Grain Fabric - Color 8 | Carnegie",
+    "handle": "siltech-grain-fabric-color-8",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#1C2836",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "Graphite",
+      "New Arrival",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837135122483",
+          "sku": "DWAG-379320",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837135155251",
+          "sku": "DWAG-379320-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732861378611",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861411379",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861444147",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861476915",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861509683",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861542451",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861575219",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861607987",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861640755",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861673523",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861706291",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861739059",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861771827",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 8",
+          "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861804595",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 8",
+          "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861837363",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#1C2836",
+          "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861870131",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861902899",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861935667",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63008",
+          "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732861968435",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63008",
+          "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862001203",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862033971",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862066739",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862099507",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 8 | Carnegie",
+          "compareDigest": "6a261263d67cdad8bb58f71dcc65ce1a00a6fc4e666d62486a1bd412ac47c1fe"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7923135414323": {
+    "id": "gid://shopify/Product/7923135414323",
+    "title": "Carnegie Siltech Grain 9 Fabric",
+    "handle": "carnegie-siltech-grain-sage",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "63009",
+      "Carnegie",
+      "display_variant",
+      "Leather-Look",
+      "Neutral",
+      "Sage",
+      "Siltech Grain",
+      "split-batch:TK-10686"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44753421008947",
+          "sku": "DWAG-379321",
+          "title": "Fabric",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44753421041715",
+          "sku": "DWAG-379321-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37165395804211",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63009",
+          "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165395836979",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63009",
+          "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165395869747",
+          "namespace": "global",
+          "key": "Brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948928051",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948960819",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165948993587",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949026355",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949059123",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949091891",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949124659",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949157427",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949190195",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949222963",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949255731",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949288499",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949321267",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Sage",
+          "compareDigest": "721935dc461db9249daccb0e0b262702a7bb40a7eeda36518dd9d61f7e392b39"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949354035",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 9",
+          "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949386803",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#829590",
+          "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949419571",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949452339",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949485107",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949517875",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949550643",
+          "namespace": "custom",
+          "key": "material_category",
+          "type": "single_line_text_field",
+          "value": "Silicone",
+          "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949583411",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37165949616179",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Carnegie Siltech Grain Sage | Carnegie",
+          "compareDigest": "9bbd779de88d373d181aa7a4464cfe3b9c5c95fc7d709d1230225a9e9b3402b3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180665167923",
+          "namespace": "global",
+          "key": "Color",
+          "type": "single_line_text_field",
+          "value": "Sage",
+          "compareDigest": "721935dc461db9249daccb0e0b262702a7bb40a7eeda36518dd9d61f7e392b39"
+        },
+        {
+          "id": "gid://shopify/Metafield/37180665200691",
+          "namespace": "custom",
+          "key": "Color Hex",
+          "type": "single_line_text_field",
+          "value": "#829590",
+          "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+        },
+        {
+          "id": "gid://shopify/Metafield/37183693488179",
+          "namespace": "custom",
+          "key": "swatch_hex",
+          "type": "single_line_text_field",
+          "value": "#829590",
+          "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848867891",
+          "namespace": "dwc",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379321",
+          "compareDigest": "4a3a49b185a3e0e78a6327fe3da197ae6b0b5c0e22e098389421bc7e0d588d36"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403848900659",
+          "namespace": "dwc",
+          "key": "content",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852308531",
+          "namespace": "dwc",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852341299",
+          "namespace": "dwc",
+          "key": "flammability",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852374067",
+          "namespace": "dwc",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37403852406835",
+          "namespace": "dwc",
+          "key": "product_type",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37409407107123",
+          "namespace": "custom",
+          "key": "manufacturer_specs",
+          "type": "json",
+          "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63009\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+          "compareDigest": "7ff16c88f10af03d46efa0602eff5ec51d31d49d9591ec88b800415c37484fe8"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480613939",
+          "namespace": "carnegie",
+          "key": "manufacturer_sku",
+          "type": "multi_line_text_field",
+          "value": "63009",
+          "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480646707",
+          "namespace": "carnegie",
+          "key": "source_url",
+          "type": "multi_line_text_field",
+          "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+          "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480679475",
+          "namespace": "carnegie",
+          "key": "type",
+          "type": "multi_line_text_field",
+          "value": "Suitable for Indoor and Outdoor use",
+          "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480712243",
+          "namespace": "carnegie",
+          "key": "width",
+          "type": "multi_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480745011",
+          "namespace": "carnegie",
+          "key": "backing",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480777779",
+          "namespace": "carnegie",
+          "key": "free_of",
+          "type": "multi_line_text_field",
+          "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+          "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480810547",
+          "namespace": "carnegie",
+          "key": "contents",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480843315",
+          "namespace": "carnegie",
+          "key": "warranty",
+          "type": "multi_line_text_field",
+          "value": "10 years",
+          "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480876083",
+          "namespace": "carnegie",
+          "key": "durability",
+          "type": "multi_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480908851",
+          "namespace": "carnegie",
+          "key": "hydrolysis",
+          "type": "multi_line_text_field",
+          "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+          "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480941619",
+          "namespace": "carnegie",
+          "key": "flammability",
+          "type": "multi_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457480974387",
+          "namespace": "carnegie",
+          "key": "cleaning_code",
+          "type": "multi_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481007155",
+          "namespace": "carnegie",
+          "key": "lightfastness",
+          "type": "multi_line_text_field",
+          "value": "1,000 hours lightfastness",
+          "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481039923",
+          "namespace": "carnegie",
+          "key": "manufactured_in",
+          "type": "multi_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481072691",
+          "namespace": "carnegie",
+          "key": "additional_details",
+          "type": "multi_line_text_field",
+          "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+          "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481105459",
+          "namespace": "carnegie",
+          "key": "backing_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481138227",
+          "namespace": "carnegie",
+          "key": "finish_es_as_stocked",
+          "type": "multi_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481170995",
+          "namespace": "carnegie",
+          "key": "imo_certification_type",
+          "type": "multi_line_text_field",
+          "value": "IMO IMO Wheelmark",
+          "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481203763",
+          "namespace": "carnegie",
+          "key": "weight_per_linear_yard",
+          "type": "multi_line_text_field",
+          "value": "38.5 oz",
+          "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+        },
+        {
+          "id": "gid://shopify/Metafield/37457481236531",
+          "namespace": "carnegie",
+          "key": "standards_and_certifications",
+          "type": "multi_line_text_field",
+          "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+          "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+        },
+        {
+          "id": "gid://shopify/Metafield/37461433712691",
+          "namespace": "custom",
+          "key": "real_vendor",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615701555",
+          "namespace": "custom",
+          "key": "dw_sku",
+          "type": "single_line_text_field",
+          "value": "DWAG-379321",
+          "compareDigest": "4a3a49b185a3e0e78a6327fe3da197ae6b0b5c0e22e098389421bc7e0d588d36"
+        },
+        {
+          "id": "gid://shopify/Metafield/37546615734323",
+          "namespace": "custom",
+          "key": "product_type_spec",
+          "type": "single_line_text_field",
+          "value": "Upholstery",
+          "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7950174322739": {
+    "id": "gid://shopify/Product/7950174322739",
+    "title": "Siltech Grain Fabric - Color 9 | Carnegie",
+    "handle": "siltech-grain-fabric-color-9",
+    "vendor": "Carnegie",
+    "status": "ACTIVE",
+    "tags": [
+      "#829590",
+      "Carnegie",
+      "display_variant",
+      "Fabric",
+      "New Arrival",
+      "Sage",
+      "Siltech Grain",
+      "split-batch:carnegie-v2",
+      "Trending Wallcovering Collection 2026"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Fabric",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44837135286323",
+          "sku": "DWAG-379321",
+          "title": "Upholstery",
+          "price": "135.75",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44837135319091",
+          "sku": "DWAG-379321-sample",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/37732862263347",
+          "namespace": "custom",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862296115",
+          "namespace": "dwc",
+          "key": "width",
+          "type": "single_line_text_field",
+          "value": "55\" (140 cm)",
+          "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862328883",
+          "namespace": "custom",
+          "key": "material",
+          "type": "multi_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862361651",
+          "namespace": "dwc",
+          "key": "contents",
+          "type": "single_line_text_field",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862394419",
+          "namespace": "dwc",
+          "key": "durability",
+          "type": "single_line_text_field",
+          "value": "No wear 200,000 double rubs",
+          "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862427187",
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "type": "single_line_text_field",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862459955",
+          "namespace": "dwc",
+          "key": "finish",
+          "type": "single_line_text_field",
+          "value": "Finish-Free",
+          "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862492723",
+          "namespace": "custom",
+          "key": "fire_rating",
+          "type": "single_line_text_field",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862525491",
+          "namespace": "custom",
+          "key": "backing",
+          "type": "single_line_text_field",
+          "value": "Unbacked",
+          "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862558259",
+          "namespace": "custom",
+          "key": "origin",
+          "type": "single_line_text_field",
+          "value": "China",
+          "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862591027",
+          "namespace": "custom",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862623795",
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain",
+          "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862656563",
+          "namespace": "custom",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 9",
+          "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862689331",
+          "namespace": "dwc",
+          "key": "color",
+          "type": "single_line_text_field",
+          "value": "Color 9",
+          "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862722099",
+          "namespace": "custom",
+          "key": "color_hex",
+          "type": "single_line_text_field",
+          "value": "#829590",
+          "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862754867",
+          "namespace": "custom",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862787635",
+          "namespace": "dwc",
+          "key": "brand",
+          "type": "single_line_text_field",
+          "value": "Carnegie",
+          "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862820403",
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63009",
+          "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862853171",
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "type": "single_line_text_field",
+          "value": "63009",
+          "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862885939",
+          "namespace": "dwc",
+          "key": "order_unit",
+          "type": "single_line_text_field",
+          "value": "Yard",
+          "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862918707",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862951475",
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "type": "multi_line_text_field",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+        },
+        {
+          "id": "gid://shopify/Metafield/37732862984243",
+          "namespace": "global",
+          "key": "title_tag",
+          "type": "single_line_text_field",
+          "value": "Siltech Grain Fabric - Color 9 | Carnegie",
+          "compareDigest": "aa0434411815e8aabcc74a57662af2540deaf2e040c0ad3951f575d4eb62396e"
+        }
+      ]
+    }
+  },
+  "gid://shopify/Product/7896461410355": {
+    "id": "gid://shopify/Product/7896461410355",
+    "title": "Carnegie Siltech Grain",
+    "handle": "carnegie-siltech-grain",
+    "vendor": "Carnegie",
+    "status": "ARCHIVED",
+    "tags": [
+      "Black",
+      "Blush",
+      "Brown",
+      "Burgundy",
+      "Camel",
+      "Carnegie",
+      "carnegie-textile",
+      "Charcoal",
+      "Chocolate",
+      "Cream",
+      "display_variant",
+      "Fabric",
+      "Gold",
+      "Grey",
+      "Ivory",
+      "Khaki",
+      "Mustard",
+      "Oatmeal",
+      "Olive",
+      "Red",
+      "Rust",
+      "Sand",
+      "Upholstery"
+    ],
+    "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+    "productType": "Upholstery",
+    "variants": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/ProductVariant/44585627451443",
+          "sku": "DWAG-379296",
+          "title": "Color 1",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627484211",
+          "sku": "DWAG-379297",
+          "title": "Color 10",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627516979",
+          "sku": "DWAG-379298",
+          "title": "Color 11",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627549747",
+          "sku": "DWAG-379299",
+          "title": "Color 12",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627582515",
+          "sku": "DWAG-379300",
+          "title": "Color 13",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627615283",
+          "sku": "DWAG-379301",
+          "title": "Color 14",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627648051",
+          "sku": "DWAG-379302",
+          "title": "Color 15",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627680819",
+          "sku": "DWAG-379303",
+          "title": "Color 16",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627713587",
+          "sku": "DWAG-379304",
+          "title": "Color 17",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627746355",
+          "sku": "DWAG-379305",
+          "title": "Color 18",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627779123",
+          "sku": "DWAG-379306",
+          "title": "Color 19",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627811891",
+          "sku": "DWAG-379307",
+          "title": "Color 2",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627844659",
+          "sku": "DWAG-379308",
+          "title": "Color 20",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627877427",
+          "sku": "DWAG-379309",
+          "title": "Color 21",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627910195",
+          "sku": "DWAG-379310",
+          "title": "Color 22",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627942963",
+          "sku": "DWAG-379311",
+          "title": "Color 23",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585627975731",
+          "sku": "DWAG-379312",
+          "title": "Color 24",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628008499",
+          "sku": "DWAG-379313",
+          "title": "Color 25",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628041267",
+          "sku": "DWAG-379314",
+          "title": "Color 26",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628074035",
+          "sku": "DWAG-379315",
+          "title": "Color 3",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628106803",
+          "sku": "DWAG-379316",
+          "title": "Color 4",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628139571",
+          "sku": "DWAG-379317",
+          "title": "Color 5",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628172339",
+          "sku": "DWAG-379318",
+          "title": "Color 6",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628205107",
+          "sku": "DWAG-379319",
+          "title": "Color 7",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628237875",
+          "sku": "DWAG-379320",
+          "title": "Color 8",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628270643",
+          "sku": "DWAG-379321",
+          "title": "Color 9",
+          "price": "136.00",
+          "compareAtPrice": null
+        },
+        {
+          "id": "gid://shopify/ProductVariant/44585628303411",
+          "sku": "6300-upholstery-SAMPLE",
+          "title": "Memo Sample",
+          "price": "4.25",
+          "compareAtPrice": null
+        }
+      ]
+    },
+    "metafields": {
+      "pageInfo": {
+        "hasNextPage": false
+      },
+      "nodes": [
+        {
+          "id": "gid://shopify/Metafield/36672339214387",
+          "namespace": "custom",
+          "key": "product_class",
+          "type": "single_line_text_field",
+          "value": "Fabric",
+          "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+        },
+        {
+          "id": "gid://shopify/Metafield/36726273933363",
+          "namespace": "custom",
+          "key": "color_normalized_at",
+          "type": "date_time",
+          "value": "2026-07-28T15:44:25Z",
+          "compareDigest": "2d7d94c713f77b5b8d9e3bcd5bd8dfe4fe29fc0d9d151e3f21e508fef1ab4fea"
+        },
+        {
+          "id": "gid://shopify/Metafield/36726273966131",
+          "namespace": "custom",
+          "key": "color_palette",
+          "type": "json",
+          "value": "[{\"hex\":\"#F2EFEA\",\"pct\":100.0}]",
+          "compareDigest": "ea05156d5e01cd844d2d767a83814bebc17539dc20840f7a261354cfdb4da343"
+        }
+      ]
+    }
+  }
+}
diff --git a/execution-20260911/independent-canary.json b/execution-20260911/independent-canary.json
new file mode 100644
index 0000000..53d450f
--- /dev/null
+++ b/execution-20260911/independent-canary.json
@@ -0,0 +1,321 @@
+{
+  "verdict": "PASS",
+  "at": "2026-09-11T17:31:04.092423+00:00",
+  "phase": "canary",
+  "reader": "Independent REST GET plus read-only SQL; no repair implementation imported",
+  "products": 1,
+  "metafields": 2,
+  "database_rows": 26,
+  "unique_identities": 5928,
+  "grouped_product_unchanged": true,
+  "all_unrelated_metafields_and_product_fields_unchanged": true,
+  "results": [
+    {
+      "id": "gid://shopify/Product/7950172618803",
+      "status": "active",
+      "metafields": [
+        {
+          "id": 37732834181171,
+          "namespace": "custom",
+          "key": "width",
+          "value": "55\" (140 cm)",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834181171"
+        },
+        {
+          "id": 37732834213939,
+          "namespace": "dwc",
+          "key": "width",
+          "value": "55\" (140 cm)",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834213939"
+        },
+        {
+          "id": 37732834246707,
+          "namespace": "custom",
+          "key": "material",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "multi_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834246707"
+        },
+        {
+          "id": 37732834279475,
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834279475"
+        },
+        {
+          "id": 37732834312243,
+          "namespace": "dwc",
+          "key": "durability",
+          "value": "No wear 200,000 double rubs",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834312243"
+        },
+        {
+          "id": 37732834345011,
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834345011"
+        },
+        {
+          "id": 37732834377779,
+          "namespace": "dwc",
+          "key": "finish",
+          "value": "Finish-Free",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834377779"
+        },
+        {
+          "id": 37732834410547,
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834410547"
+        },
+        {
+          "id": 37732834443315,
+          "namespace": "custom",
+          "key": "backing",
+          "value": "Unbacked",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834443315"
+        },
+        {
+          "id": 37732834476083,
+          "namespace": "custom",
+          "key": "origin",
+          "value": "China",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834476083"
+        },
+        {
+          "id": 37732834508851,
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Siltech Grain",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834508851"
+        },
+        {
+          "id": 37732834541619,
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Siltech Grain",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834541619"
+        },
+        {
+          "id": 37732834574387,
+          "namespace": "custom",
+          "key": "color",
+          "value": "Color 1",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834574387"
+        },
+        {
+          "id": 37732834607155,
+          "namespace": "dwc",
+          "key": "color",
+          "value": "Color 1",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834607155"
+        },
+        {
+          "id": 37732834639923,
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#F2EFEB",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834639923"
+        },
+        {
+          "id": 37732834672691,
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834672691"
+        },
+        {
+          "id": 37732834705459,
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834705459"
+        },
+        {
+          "id": 37732834738227,
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "63001-upholstery",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-11T10:30:59-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834738227"
+        },
+        {
+          "id": 37732834770995,
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "63001-upholstery",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-11T10:30:59-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834770995"
+        },
+        {
+          "id": 37732834803763,
+          "namespace": "dwc",
+          "key": "order_unit",
+          "value": "Yard",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834803763"
+        },
+        {
+          "id": 37732834836531,
+          "namespace": "custom",
+          "key": "product_class",
+          "value": "Fabric",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834836531"
+        },
+        {
+          "id": 37732834869299,
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "multi_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834869299"
+        },
+        {
+          "id": 37732834902067,
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Siltech Grain Fabric - Color 1 | Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834902067"
+        }
+      ],
+      "variant_prices_unchanged": true,
+      "unrelated_fields_unchanged": true
+    }
+  ]
+}
diff --git a/execution-20260911/independent-rollback-canary.json b/execution-20260911/independent-rollback-canary.json
new file mode 100644
index 0000000..ab2bcf4
--- /dev/null
+++ b/execution-20260911/independent-rollback-canary.json
@@ -0,0 +1,321 @@
+{
+  "verdict": "PASS",
+  "at": "2026-09-11T17:30:58.610591+00:00",
+  "phase": "rollback-canary",
+  "reader": "Independent REST GET plus read-only SQL; no repair implementation imported",
+  "products": 1,
+  "metafields": 2,
+  "database_rows": 26,
+  "unique_identities": 5928,
+  "grouped_product_unchanged": true,
+  "all_unrelated_metafields_and_product_fields_unchanged": true,
+  "results": [
+    {
+      "id": "gid://shopify/Product/7950172618803",
+      "status": "active",
+      "metafields": [
+        {
+          "id": 37732834181171,
+          "namespace": "custom",
+          "key": "width",
+          "value": "55\" (140 cm)",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834181171"
+        },
+        {
+          "id": 37732834213939,
+          "namespace": "dwc",
+          "key": "width",
+          "value": "55\" (140 cm)",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834213939"
+        },
+        {
+          "id": 37732834246707,
+          "namespace": "custom",
+          "key": "material",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "multi_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834246707"
+        },
+        {
+          "id": 37732834279475,
+          "namespace": "dwc",
+          "key": "contents",
+          "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834279475"
+        },
+        {
+          "id": 37732834312243,
+          "namespace": "dwc",
+          "key": "durability",
+          "value": "No wear 200,000 double rubs",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834312243"
+        },
+        {
+          "id": 37732834345011,
+          "namespace": "dwc",
+          "key": "cleaning_code",
+          "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834345011"
+        },
+        {
+          "id": 37732834377779,
+          "namespace": "dwc",
+          "key": "finish",
+          "value": "Finish-Free",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834377779"
+        },
+        {
+          "id": 37732834410547,
+          "namespace": "custom",
+          "key": "fire_rating",
+          "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834410547"
+        },
+        {
+          "id": 37732834443315,
+          "namespace": "custom",
+          "key": "backing",
+          "value": "Unbacked",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834443315"
+        },
+        {
+          "id": 37732834476083,
+          "namespace": "custom",
+          "key": "origin",
+          "value": "China",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834476083"
+        },
+        {
+          "id": 37732834508851,
+          "namespace": "custom",
+          "key": "pattern_name",
+          "value": "Siltech Grain",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834508851"
+        },
+        {
+          "id": 37732834541619,
+          "namespace": "dwc",
+          "key": "pattern_name",
+          "value": "Siltech Grain",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834541619"
+        },
+        {
+          "id": 37732834574387,
+          "namespace": "custom",
+          "key": "color",
+          "value": "Color 1",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834574387"
+        },
+        {
+          "id": 37732834607155,
+          "namespace": "dwc",
+          "key": "color",
+          "value": "Color 1",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834607155"
+        },
+        {
+          "id": 37732834639923,
+          "namespace": "custom",
+          "key": "color_hex",
+          "value": "#F2EFEB",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834639923"
+        },
+        {
+          "id": 37732834672691,
+          "namespace": "custom",
+          "key": "brand",
+          "value": "Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834672691"
+        },
+        {
+          "id": 37732834705459,
+          "namespace": "dwc",
+          "key": "brand",
+          "value": "Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834705459"
+        },
+        {
+          "id": 37732834738227,
+          "namespace": "custom",
+          "key": "manufacturer_sku",
+          "value": "63001",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-11T10:30:54-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834738227"
+        },
+        {
+          "id": 37732834770995,
+          "namespace": "dwc",
+          "key": "manufacturer_sku",
+          "value": "63001",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-11T10:30:54-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834770995"
+        },
+        {
+          "id": 37732834803763,
+          "namespace": "dwc",
+          "key": "order_unit",
+          "value": "Yard",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834803763"
+        },
+        {
+          "id": 37732834836531,
+          "namespace": "custom",
+          "key": "product_class",
+          "value": "Fabric",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834836531"
+        },
+        {
+          "id": 37732834869299,
+          "namespace": "dwc",
+          "key": "ai_generated_description",
+          "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "multi_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834869299"
+        },
+        {
+          "id": 37732834902067,
+          "namespace": "global",
+          "key": "title_tag",
+          "value": "Siltech Grain Fabric - Color 1 | Carnegie",
+          "description": null,
+          "owner_id": 7950172618803,
+          "created_at": "2026-09-09T23:26:14-07:00",
+          "updated_at": "2026-09-09T23:26:14-07:00",
+          "owner_resource": "product",
+          "type": "single_line_text_field",
+          "admin_graphql_api_id": "gid://shopify/Metafield/37732834902067"
+        }
+      ],
+      "variant_prices_unchanged": true,
+      "unrelated_fields_unchanged": true
+    }
+  ]
+}
diff --git a/execution-20260911/products-baseline.json b/execution-20260911/products-baseline.json
new file mode 100644
index 0000000..5b95bcf
--- /dev/null
+++ b/execution-20260911/products-baseline.json
@@ -0,0 +1,19764 @@
+{
+  "at": "2026-09-11T17:22:29.105444+00:00",
+  "reason": "Observed separate pricing repair75->135.75 on26 ACTIVE real variants; exact identity/metafield prestate unchanged; preserve these prices. No price mutations by TK11246.",
+  "changes": [
+    {
+      "id": "gid://shopify/Product/7950172618803",
+      "variant": "gid://shopify/ProductVariant/44837131878451",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950172684339",
+      "variant": "gid://shopify/ProductVariant/44837132009523",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950172782643",
+      "variant": "gid://shopify/ProductVariant/44837132206131",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950172815411",
+      "variant": "gid://shopify/ProductVariant/44837132271667",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950172848179",
+      "variant": "gid://shopify/ProductVariant/44837132337203",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950172913715",
+      "variant": "gid://shopify/ProductVariant/44837132435507",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173077555",
+      "variant": "gid://shopify/ProductVariant/44837132763187",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173110323",
+      "variant": "gid://shopify/ProductVariant/44837132861491",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173175859",
+      "variant": "gid://shopify/ProductVariant/44837132992563",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173241395",
+      "variant": "gid://shopify/ProductVariant/44837133123635",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173339699",
+      "variant": "gid://shopify/ProductVariant/44837133287475",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173372467",
+      "variant": "gid://shopify/ProductVariant/44837133385779",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173438003",
+      "variant": "gid://shopify/ProductVariant/44837133484083",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173503539",
+      "variant": "gid://shopify/ProductVariant/44837133647923",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173569075",
+      "variant": "gid://shopify/ProductVariant/44837133778995",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173634611",
+      "variant": "gid://shopify/ProductVariant/44837133877299",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173700147",
+      "variant": "gid://shopify/ProductVariant/44837134008371",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173765683",
+      "variant": "gid://shopify/ProductVariant/44837134172211",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173798451",
+      "variant": "gid://shopify/ProductVariant/44837134237747",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173896755",
+      "variant": "gid://shopify/ProductVariant/44837134467123",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173929523",
+      "variant": "gid://shopify/ProductVariant/44837134532659",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950173995059",
+      "variant": "gid://shopify/ProductVariant/44837134663731",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950174093363",
+      "variant": "gid://shopify/ProductVariant/44837134860339",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950174191667",
+      "variant": "gid://shopify/ProductVariant/44837135024179",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950174224435",
+      "variant": "gid://shopify/ProductVariant/44837135122483",
+      "before": "75.00",
+      "current": "135.75"
+    },
+    {
+      "id": "gid://shopify/Product/7950174322739",
+      "variant": "gid://shopify/ProductVariant/44837135286323",
+      "before": "75.00",
+      "current": "135.75"
+    }
+  ],
+  "products": {
+    "gid://shopify/Product/7923134693427": {
+      "id": "gid://shopify/Product/7923134693427",
+      "title": "Carnegie Siltech Grain 1 Fabric",
+      "handle": "carnegie-siltech-grain-alabaster",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63001",
+        "Alabaster",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Light",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "White"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753419698227",
+            "sku": "DWAG-379296",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753419730995",
+            "sku": "DWAG-379296-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165390102579",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63001",
+            "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165390135347",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63001",
+            "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165390168115",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165913047091",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165913374771",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165913538611",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165913571379",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165915766835",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916028979",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916094515",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916225587",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916258355",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916323891",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Alabaster",
+            "compareDigest": "6bb59cebf14d55ca003ef935bfa7795f1465cfc16f04c8df1e67c9706a511e92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916356659",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 1",
+            "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916389427",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916454963",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916651571",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165916782643",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165917536307",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165917700147",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165917831219",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain White | Carnegie",
+            "compareDigest": "ee7541b18ec7dc3ac121cabe90ff0c879890a103706bac33f862fb985202c72c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165940506675",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165940539443",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165940572211",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165940604979",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#F2EFEB",
+            "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180662153267",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Alabaster",
+            "compareDigest": "6bb59cebf14d55ca003ef935bfa7795f1465cfc16f04c8df1e67c9706a511e92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180662186035",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#F2EFEB",
+            "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183690965043",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#F2EFEB",
+            "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847295027",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379296",
+            "compareDigest": "2c5b61b03f010e252acf5ca6783f4ff8c9c47a8b5a38ea39c341897f4157da73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847327795",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847360563",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847393331",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847426099",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847458867",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409233862707",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63001\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "85be2930e80018070ae0135ffd1a592ff78f65bfac6dab81f4801a4d5e091b73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470324787",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63001",
+            "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470357555",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470390323",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470423091",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470455859",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470488627",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470521395",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470554163",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470586931",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470619699",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470652467",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470685235",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470718003",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470750771",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470783539",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470816307",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470849075",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470881843",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470914611",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457470947379",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37458212585523",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546614816819",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379296",
+            "compareDigest": "2c5b61b03f010e252acf5ca6783f4ff8c9c47a8b5a38ea39c341897f4157da73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546614849587",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172618803": {
+      "id": "gid://shopify/Product/7950172618803",
+      "title": "Siltech Grain Fabric - Color 1 | Carnegie",
+      "handle": "siltech-grain-fabric-color-1",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#F2EFEB",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026",
+        "White"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837131878451",
+            "sku": "DWAG-379296",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837131911219",
+            "sku": "DWAG-379296-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732834181171",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834213939",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834246707",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834279475",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834312243",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834345011",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834377779",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834410547",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834443315",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834476083",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834508851",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834541619",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834574387",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 1",
+            "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834607155",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 1",
+            "compareDigest": "08ab19ff1e096e2fe9ebc1c2c2d956f341868306e01a2f7fe187ae108a057a1c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834639923",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#F2EFEB",
+            "compareDigest": "124fa1161628dcb455bcf1bb3c0a981334a8599bb2afcdee15b0a625a1062c62"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834672691",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834705459",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834738227",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63001",
+            "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834770995",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63001",
+            "compareDigest": "df4e28808b011d273e4dab32a82c4504c11d4e77e29b70ef45115a387a30314d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834803763",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834836531",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834869299",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732834902067",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 1 | Carnegie",
+            "compareDigest": "c465ae629c30f9c20139ac8326da4c02666a0403851cd12d72541a7e3235054d"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135479859": {
+      "id": "gid://shopify/Product/7923135479859",
+      "title": "Carnegie Siltech Grain 10 Fabric",
+      "handle": "carnegie-siltech-grain-moss",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630010",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Moss",
+        "Pewter",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421205555",
+            "sku": "DWAG-379297",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421238323",
+            "sku": "DWAG-379297-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165396328499",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630010",
+            "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165396361267",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630010",
+            "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165396394035",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949747251",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949780019",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949812787",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949845555",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949878323",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949911091",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949943859",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949976627",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950009395",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950042163",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950074931",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950107699",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950140467",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Moss",
+            "compareDigest": "eaaace3d6d7fdab6c40af0bc3fd4bae630d35bee0a97394424e2b813f2763e3a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950173235",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 10",
+            "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950206003",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#918A64",
+            "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950238771",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950271539",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950304307",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950337075",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950369843",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950402611",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950435379",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Pewter | Carnegie",
+            "compareDigest": "56c2dc91f5992cf37e075d3537a8b51e231fb967166c1255392747eb3c8d60d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180665430067",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Moss",
+            "compareDigest": "eaaace3d6d7fdab6c40af0bc3fd4bae630d35bee0a97394424e2b813f2763e3a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180665462835",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#918A64",
+            "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183694176307",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#918A64",
+            "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852439603",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379297",
+            "compareDigest": "f55e2c767853833d5ef64a5732f7298a464e6ac5b5368f82c729fa496a5c3c74"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852472371",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852505139",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852537907",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852570675",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852603443",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407172659",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630010\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "9d9fe359ff2210aa536ce06da474a926c8b62be8ece02f7d23f997a06b268dd8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481269299",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630010",
+            "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481302067",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481334835",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481367603",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481400371",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481433139",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481465907",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481498675",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481531443",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481564211",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481596979",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481629747",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481662515",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481695283",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481728051",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481760819",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481793587",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481826355",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481859123",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481891891",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433909299",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615767091",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379297",
+            "compareDigest": "f55e2c767853833d5ef64a5732f7298a464e6ac5b5368f82c729fa496a5c3c74"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615799859",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172684339": {
+      "id": "gid://shopify/Product/7950172684339",
+      "title": "Siltech Grain Fabric - Color 10 | Carnegie",
+      "handle": "siltech-grain-fabric-color-10",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#918A64",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Pewter",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132009523",
+            "sku": "DWAG-379297",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132042291",
+            "sku": "DWAG-379297-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732835000371",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835033139",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835065907",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835098675",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835131443",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835164211",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835196979",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835229747",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835262515",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835295283",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835328051",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835360819",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835393587",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 10",
+            "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835426355",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 10",
+            "compareDigest": "5afe103d2b2087fe5f4043d2f93c5a110eb893a6bcbebd28e9864212f3888eb3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835459123",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#918A64",
+            "compareDigest": "841c5762ca24b6f582e3ef87eedaef16deb8f956b4ff1bd3d3163b9989ade5fe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835491891",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835524659",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835557427",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630010",
+            "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835590195",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630010",
+            "compareDigest": "43016206dcc5750844a857b133f5493ddb7cb3eb3930cc08a35889e022afe26e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835622963",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835655731",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835688499",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732835721267",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 10 | Carnegie",
+            "compareDigest": "e138c4731be7af59f68dbb50874eb9be18205dd44df3af765f4fb168f58e4882"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135578163": {
+      "id": "gid://shopify/Product/7923135578163",
+      "title": "Carnegie Siltech Grain 11 Fabric",
+      "handle": "carnegie-siltech-grain-ochre",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630011",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Mustard",
+        "Ochre",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421402163",
+            "sku": "DWAG-379298",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421434931",
+            "sku": "DWAG-379298-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165397016627",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630011",
+            "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165397049395",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630011",
+            "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165397082163",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950468147",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950500915",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950533683",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950566451",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950599219",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950631987",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950664755",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950697523",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950730291",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950763059",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950795827",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950828595",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950861363",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Ochre",
+            "compareDigest": "66d7df5571373c5cf7399334da048e0a3ef8bf8d9da9ec9b95f4cfe0d10f243a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950894131",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 11",
+            "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950926899",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#D28B20",
+            "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950959667",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165950992435",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951025203",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951057971",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951090739",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951123507",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951156275",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Mustard | Carnegie",
+            "compareDigest": "14945309f8d0fe681dec0ce79eec4f9f629ef1662a3633f2f39977ad20d5fce9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180666740787",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Ochre",
+            "compareDigest": "66d7df5571373c5cf7399334da048e0a3ef8bf8d9da9ec9b95f4cfe0d10f243a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180666773555",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#D28B20",
+            "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183694274611",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#D28B20",
+            "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852636211",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379298",
+            "compareDigest": "35c069a8400a59fd4ff78e4afe34cc6c8600881f21266adc17e71468bb6c6c86"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852668979",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852701747",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852734515",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852767283",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852800051",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407369267",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630011\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "3a41a58816a2dc8e6f9781ff1caa5705a786f71993b3421d2a150a9388c6c527"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481924659",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630011",
+            "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481957427",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481990195",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482022963",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482055731",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482088499",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482121267",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482154035",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482186803",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482219571",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482252339",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482285107",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482317875",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482350643",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482383411",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482416179",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482448947",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482481715",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482514483",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482547251",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461434138675",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616029235",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379298",
+            "compareDigest": "35c069a8400a59fd4ff78e4afe34cc6c8600881f21266adc17e71468bb6c6c86"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616062003",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172782643": {
+      "id": "gid://shopify/Product/7950172782643",
+      "title": "Siltech Grain Fabric - Color 11 | Carnegie",
+      "handle": "siltech-grain-fabric-color-11",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#D28B20",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "Mustard",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132206131",
+            "sku": "DWAG-379298",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132238899",
+            "sku": "DWAG-379298-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732836311091",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836343859",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836376627",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836409395",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836442163",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836474931",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836507699",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836540467",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836573235",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836606003",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836638771",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836671539",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836704307",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 11",
+            "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836737075",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 11",
+            "compareDigest": "33d91da28122c5e9d2d0c1ba4951759c2fc824fcc80eeae843f5b7f78e79a4bb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836769843",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#D28B20",
+            "compareDigest": "1ca6116f1d804899306a74fc706e14e393c6252f2b8a50f929d40577bbf3cba5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836802611",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836835379",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836868147",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630011",
+            "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836900915",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630011",
+            "compareDigest": "6e2b46c98db83b9d5b64f9ecf9d74d45b23bf947e0622fddf334cdbd9df0de8a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836933683",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836966451",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732836999219",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837031987",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 11 | Carnegie",
+            "compareDigest": "b9bc4c8afe3ef4bb6454dcefd8a48588312d965263f6111fd92b24615ca29b96"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135643699": {
+      "id": "gid://shopify/Product/7923135643699",
+      "title": "Carnegie Siltech Grain 12 Fabric",
+      "handle": "carnegie-siltech-grain-brick",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630012",
+        "Brick",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421533235",
+            "sku": "DWAG-379299",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421566003",
+            "sku": "DWAG-379299-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165397639219",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630012",
+            "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165397671987",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630012",
+            "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165397704755",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951451187",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951483955",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951516723",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951549491",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951582259",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951615027",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951647795",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951680563",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951713331",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951746099",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951778867",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951811635",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951844403",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Brick",
+            "compareDigest": "c3995cc76d34d0a42d57935a7c98cec311a51924946ccff31465b68b4cbc1ee4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951877171",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 12",
+            "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951909939",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#952917",
+            "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951942707",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165951975475",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952008243",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952041011",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952073779",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952106547",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952139315",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Brick 99 | Carnegie",
+            "compareDigest": "899b166cac9b5d036e8401974ccce958499ad18ec2b82bb8b14fffcb5c295bd2"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180666904627",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Brick",
+            "compareDigest": "c3995cc76d34d0a42d57935a7c98cec311a51924946ccff31465b68b4cbc1ee4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180666937395",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#952917",
+            "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183694602291",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#952917",
+            "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852832819",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379299",
+            "compareDigest": "cd010f807fbab8d08422a91f4b0d12bd9f39024748091d2161eebf5cf7d0cfd5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852865587",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852898355",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852931123",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852963891",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852996659",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407402035",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630012\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "bea115b2656a0b9a59c6c5640ecac67520e83daf1409c8eb8d36d12a30ffac06"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482580019",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630012",
+            "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482612787",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482645555",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482678323",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482711091",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482743859",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482776627",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482809395",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482842163",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482874931",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482907699",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482940467",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457482973235",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483006003",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483038771",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483071539",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483104307",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483137075",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483169843",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483202611",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461434269747",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616094771",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379299",
+            "compareDigest": "cd010f807fbab8d08422a91f4b0d12bd9f39024748091d2161eebf5cf7d0cfd5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616127539",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172815411": {
+      "id": "gid://shopify/Product/7950172815411",
+      "title": "Siltech Grain Fabric - Color 12 | Carnegie",
+      "handle": "siltech-grain-fabric-color-12",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#952917",
+        "Brick",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132271667",
+            "sku": "DWAG-379299",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132304435",
+            "sku": "DWAG-379299-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732837130291",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837163059",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837195827",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837228595",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837261363",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837294131",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837326899",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837359667",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837392435",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837425203",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837457971",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837490739",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837523507",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 12",
+            "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837556275",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 12",
+            "compareDigest": "b64a764e05e6487f10676a88ef2863a4f959e03e88da5b9ee55580620000c167"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837589043",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#952917",
+            "compareDigest": "8656cd87797e3fc760f59d8fc37c5e93b7d5494be09fdac70ddddd6f5fcdd118"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837621811",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837654579",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837687347",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630012",
+            "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837720115",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630012",
+            "compareDigest": "5525fe9357bda1146de2eb267513ef9077e936713d48e5b19adba526ead3eda3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837752883",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837785651",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837818419",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732837851187",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 12 | Carnegie",
+            "compareDigest": "09173d7bed151081406188c2326623995cd82226bc54be866e3214ac67e99d84"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135742003": {
+      "id": "gid://shopify/Product/7923135742003",
+      "title": "Carnegie Siltech Grain 13 Fabric",
+      "handle": "carnegie-siltech-grain-crimson",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630013",
+        "Burgundy",
+        "Carnegie",
+        "Crimson",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421729843",
+            "sku": "DWAG-379300",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421762611",
+            "sku": "DWAG-379300-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165398556723",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630013",
+            "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165398589491",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630013",
+            "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165398622259",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952204851",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952237619",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952270387",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952303155",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952335923",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952368691",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952401459",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952434227",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952466995",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952499763",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952532531",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952565299",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952598067",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Crimson",
+            "compareDigest": "298c55d75b311b912517ddca4ac3961f2a47a2e99438f62f0ea412ad519524d0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952630835",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 13",
+            "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952663603",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#8E1417",
+            "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952696371",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952729139",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952761907",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952794675",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952827443",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952860211",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165952892979",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Burgundy | Carnegie",
+            "compareDigest": "25c7069132c46771e31eec6628dacfeac3cbbf10543889d5564d17850483c0b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667101235",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Crimson",
+            "compareDigest": "298c55d75b311b912517ddca4ac3961f2a47a2e99438f62f0ea412ad519524d0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667134003",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#8E1417",
+            "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183694798899",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#8E1417",
+            "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853029427",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379300",
+            "compareDigest": "6662f521fee4ebc0aa12db1db919c4d7a9914bd70a4d045944ba7ceee78cec73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853062195",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853094963",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853193267",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853226035",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853258803",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407467571",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630013\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "59b54d10731394eb990d318bbb7086c16cd5f821a72da9d6cc8073f9f3823e4a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483268147",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630013",
+            "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483300915",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483333683",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483366451",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483399219",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483431987",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483464755",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483497523",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483530291",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483563059",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483595827",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483628595",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483661363",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483694131",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483726899",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483759667",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483792435",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483825203",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483857971",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483890739",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461434990643",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616160307",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379300",
+            "compareDigest": "6662f521fee4ebc0aa12db1db919c4d7a9914bd70a4d045944ba7ceee78cec73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616193075",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172848179": {
+      "id": "gid://shopify/Product/7950172848179",
+      "title": "Siltech Grain Fabric - Color 13 | Carnegie",
+      "handle": "siltech-grain-fabric-color-13",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#8E1417",
+        "Burgundy",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132337203",
+            "sku": "DWAG-379300",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132369971",
+            "sku": "DWAG-379300-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732838375475",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838408243",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838441011",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838473779",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838506547",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838539315",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838572083",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838604851",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838637619",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838670387",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838703155",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838735923",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838768691",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 13",
+            "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838801459",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 13",
+            "compareDigest": "5e31d576c621e8cf61a34ad18a1aea0233b14f3fd82f9cdf1c6e40349b2a3bb6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838834227",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#8E1417",
+            "compareDigest": "bfdcc6844932691d822ff5e7353c07f765cce7622e735e9b2d76c8ae1a505a63"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838866995",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838899763",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838932531",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630013",
+            "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838965299",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630013",
+            "compareDigest": "3f451119608bf163d6f6d644b4186c418d11e47e5012d5ab990caf4257257a66"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732838998067",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839030835",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839063603",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839096371",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 13 | Carnegie",
+            "compareDigest": "af7bc95517725a81ec59312d661f717d29ff282a800fb5a400801ccf2dd1bae6"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135807539": {
+      "id": "gid://shopify/Product/7923135807539",
+      "title": "Carnegie Siltech Grain 14 Fabric",
+      "handle": "carnegie-siltech-grain-mahogany",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630014",
+        "Carnegie",
+        "display_variant",
+        "Espresso",
+        "Leather-Look",
+        "Mahogany",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421860915",
+            "sku": "DWAG-379301",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421893683",
+            "sku": "DWAG-379301-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165399965747",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630014",
+            "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165400031283",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630014",
+            "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165400064051",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953056819",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953089587",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953122355",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953155123",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953187891",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953220659",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953253427",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953286195",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953318963",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953351731",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953384499",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953417267",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953450035",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Mahogany",
+            "compareDigest": "ea5454db845079983915baae226ef215f0721058a3b2798ce1322ff673a7074f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953482803",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 14",
+            "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953515571",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#4A221B",
+            "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953548339",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953581107",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953613875",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953646643",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953679411",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953712179",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953744947",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Espresso 01 | Carnegie",
+            "compareDigest": "a1a259ee2b6d6d47dab87e5f971bb4b0e0b8a9b90ae165d63c04761347b8bb00"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667297843",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Mahogany",
+            "compareDigest": "ea5454db845079983915baae226ef215f0721058a3b2798ce1322ff673a7074f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667330611",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#4A221B",
+            "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183695552563",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#4A221B",
+            "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853291571",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379301",
+            "compareDigest": "b1f811bc790cbfd5ccd2c9a16e8bfd04c7b39c3c4cc4f7da6c8c5d4bc29ee746"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853324339",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853357107",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853389875",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853422643",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853455411",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407762483",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630014\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "a27b1e58c560b80fed1a406d3df49f5231db18e2bfc4be55202a5f95ca19f5c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483923507",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630014",
+            "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483956275",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457483989043",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484021811",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484054579",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484087347",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484120115",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484152883",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484185651",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484218419",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484251187",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484283955",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484316723",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484349491",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484382259",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484415027",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484447795",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484480563",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484513331",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484546099",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461435383859",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616225843",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379301",
+            "compareDigest": "b1f811bc790cbfd5ccd2c9a16e8bfd04c7b39c3c4cc4f7da6c8c5d4bc29ee746"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616258611",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950172913715": {
+      "id": "gid://shopify/Product/7950172913715",
+      "title": "Siltech Grain Fabric - Color 14 | Carnegie",
+      "handle": "siltech-grain-fabric-color-14",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#4A221B",
+        "Carnegie",
+        "display_variant",
+        "Espresso",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132435507",
+            "sku": "DWAG-379301",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132468275",
+            "sku": "DWAG-379301-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732839292979",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839325747",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839358515",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839391283",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839424051",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839456819",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839489587",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839522355",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839555123",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839587891",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839620659",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839653427",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839686195",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 14",
+            "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839718963",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 14",
+            "compareDigest": "f875403b1f0a7d05d52c85415b8e37cb4f90dd9acb6421723c938aa98dc05295"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839751731",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#4A221B",
+            "compareDigest": "97407817fb6bb8cf4a6b597c825dea7a6367f86f53dc0d4da1d40b0d139bf1b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839784499",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839817267",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839850035",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630014",
+            "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839882803",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630014",
+            "compareDigest": "4d76ccf6d6825d82437b996779385f5b454258406e96b14573dc9c05c9ec057f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839915571",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839948339",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732839981107",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840013875",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 14 | Carnegie",
+            "compareDigest": "7f954c0891ba51d2f2f46d0333792162ad22f6358f744012987bd0d83b4aa00c"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135905843": {
+      "id": "gid://shopify/Product/7923135905843",
+      "title": "Carnegie Siltech Grain 15 Fabric",
+      "handle": "carnegie-siltech-grain-russet",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630015",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Oxblood",
+        "Russet",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753422057523",
+            "sku": "DWAG-379302",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753422090291",
+            "sku": "DWAG-379302-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165401210931",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630015",
+            "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165401243699",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630015",
+            "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165401276467",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953810483",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953843251",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953876019",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953908787",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953941555",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165953974323",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954007091",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954039859",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954072627",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954105395",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954138163",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954170931",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954203699",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Russet",
+            "compareDigest": "2bc4cb8eba33c6b8b61de7f005647106e11f4c44b4233ae474592ba41e6fdadc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954236467",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 15",
+            "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954269235",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#5D2C18",
+            "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954302003",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954334771",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954367539",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954400307",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954433075",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954465843",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954498611",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Oxblood | Carnegie",
+            "compareDigest": "4719bd508132c6c503286ee658faf5a72073872779845ffbfba6dd6e7eb8b251"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667494451",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Russet",
+            "compareDigest": "2bc4cb8eba33c6b8b61de7f005647106e11f4c44b4233ae474592ba41e6fdadc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667527219",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#5D2C18",
+            "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183695781939",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#5D2C18",
+            "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853488179",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379302",
+            "compareDigest": "dbe2021893c27bc74b1e0d56f201e084284a1c156964bd015882ef5604bc0c8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853520947",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853553715",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853586483",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853619251",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853652019",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409408450611",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630015\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "d9c36cfede5fad9edd0a794a8685af6500153bbeffc53ee099481f6d4ef5123a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484578867",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630015",
+            "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484611635",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484644403",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484677171",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484709939",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484742707",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484775475",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484808243",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484841011",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484873779",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484906547",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484939315",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457484972083",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485004851",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485037619",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485070387",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485103155",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485135923",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485168691",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485201459",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461435580467",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616455219",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379302",
+            "compareDigest": "dbe2021893c27bc74b1e0d56f201e084284a1c156964bd015882ef5604bc0c8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616487987",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173077555": {
+      "id": "gid://shopify/Product/7950173077555",
+      "title": "Siltech Grain Fabric - Color 15 | Carnegie",
+      "handle": "siltech-grain-fabric-color-15",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#5D2C18",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Oxblood",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132763187",
+            "sku": "DWAG-379302",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132795955",
+            "sku": "DWAG-379302-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732840439859",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840472627",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840505395",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840538163",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840570931",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840603699",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840636467",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840669235",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840702003",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840734771",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840767539",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840800307",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840833075",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 15",
+            "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840865843",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 15",
+            "compareDigest": "0cca6c7fd5ecf3b73c9098bcc8e37abfd871123d76e7a51a1086daef56134229"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840898611",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#5D2C18",
+            "compareDigest": "4d32d3086d4b2bb4672f0ad39d669c13fc3dc5ae89d736b4d7e583eb122f4955"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840931379",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840964147",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732840996915",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630015",
+            "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841029683",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630015",
+            "compareDigest": "0d987a7f3a30274c1475f31ec441def77f06b33b8a038381812c685e0ea99b27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841062451",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841095219",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841127987",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841160755",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 15 | Carnegie",
+            "compareDigest": "1ecd27a4e6d4bf9651c6793eb46e8cf648e6f55f2d94586ce2a30337eea59e20"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135971379": {
+      "id": "gid://shopify/Product/7923135971379",
+      "title": "Carnegie Siltech Grain 16 Fabric",
+      "handle": "carnegie-siltech-grain-terracotta",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630016",
+        "Brick",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Terracotta",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753422188595",
+            "sku": "DWAG-379303",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753422221363",
+            "sku": "DWAG-379303-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165401636915",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630016",
+            "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165401669683",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630016",
+            "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165401702451",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954662451",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954695219",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954727987",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954760755",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954793523",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954826291",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954859059",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954891827",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954924595",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954957363",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165954990131",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955022899",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955055667",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Terracotta",
+            "compareDigest": "08e2349b817b9cab6d603927b9e50c5ae6135808e4cc59753ce9fc5084bf327b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955088435",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 16",
+            "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955121203",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#934621",
+            "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955153971",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955186739",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955219507",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955252275",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955285043",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955317811",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955350579",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Brick 03 | Carnegie",
+            "compareDigest": "aec9a36f09669c23dd4f65d8833272c1d64f137ab590525489798d2acf30fe18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667658291",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Terracotta",
+            "compareDigest": "08e2349b817b9cab6d603927b9e50c5ae6135808e4cc59753ce9fc5084bf327b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667691059",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#934621",
+            "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183696011315",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#934621",
+            "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853684787",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379303",
+            "compareDigest": "370196ff91331446a9759a0adfb0586d4f54aecc1a606b2232f65aa0d2ef15c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853717555",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853750323",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853783091",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853815859",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853848627",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409408483379",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630016\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "c92ae090d36c5adc16c5a24d5e2981e462e5bd078a69c9719cfc28484440fc69"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485266995",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630016",
+            "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485299763",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485332531",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485365299",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485398067",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485430835",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485463603",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485496371",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485529139",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485561907",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485594675",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485627443",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485660211",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485692979",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485725747",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485758515",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485791283",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485824051",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485856819",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485889587",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461435777075",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616684595",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379303",
+            "compareDigest": "370196ff91331446a9759a0adfb0586d4f54aecc1a606b2232f65aa0d2ef15c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616717363",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173110323": {
+      "id": "gid://shopify/Product/7950173110323",
+      "title": "Siltech Grain Fabric - Color 16 | Carnegie",
+      "handle": "siltech-grain-fabric-color-16",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#934621",
+        "Brick",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132861491",
+            "sku": "DWAG-379303",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837132894259",
+            "sku": "DWAG-379303-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732841685043",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841717811",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841750579",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841783347",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841816115",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841848883",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841881651",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841914419",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841947187",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732841979955",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842012723",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842045491",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842078259",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 16",
+            "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842111027",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 16",
+            "compareDigest": "7c5a96fe4f2f842e351d2271775738c5db3ffcd87c95dcadfbdaad3e551e424a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842143795",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#934621",
+            "compareDigest": "780028e952bdb925faba9af9426b6a8cee666eed1c2846a2976a01680f114c09"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842176563",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842209331",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842242099",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630016",
+            "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842274867",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630016",
+            "compareDigest": "44b342a204cac177388dde2b1f9f142a40331bc628273cb28da3952502585222"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842307635",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842340403",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842373171",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842405939",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 16 | Carnegie",
+            "compareDigest": "c8ff9d1d8a229561242a4bec45856a6cd37b7d8386715d03feefbc7190b7bc8b"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136102451": {
+      "id": "gid://shopify/Product/7923136102451",
+      "title": "Carnegie Siltech Grain 17 Fabric",
+      "handle": "carnegie-siltech-grain-sienna",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630017",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Rust",
+        "Sienna",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753422417971",
+            "sku": "DWAG-379304",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753422450739",
+            "sku": "DWAG-379304-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165403799603",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630017",
+            "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165403832371",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630017",
+            "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165403865139",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955547187",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955579955",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955612723",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955645491",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955678259",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955711027",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955743795",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955776563",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955809331",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955842099",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955874867",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955907635",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955940403",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Sienna",
+            "compareDigest": "9161801f7af78f80aab01cec3744a9f4e834727910ffcfd68885856a29f531b1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165955973171",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 17",
+            "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956005939",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#A65421",
+            "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956038707",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956071475",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956104243",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956137011",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956169779",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956202547",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956235315",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Rust | Carnegie",
+            "compareDigest": "d763197b6832d145d037dd68e062c8183691b640ff40c75b7a9cc2ce594ee7f4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667887667",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Sienna",
+            "compareDigest": "9161801f7af78f80aab01cec3744a9f4e834727910ffcfd68885856a29f531b1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180667920435",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#A65421",
+            "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183696732211",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#A65421",
+            "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853881395",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379304",
+            "compareDigest": "b4e0018499c550513f5ca90e1803e00329cd725c48cb097eb1cced520caa18fd"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853914163",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853946931",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403853979699",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854209075",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854241843",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409408811059",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630017\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "7559fffca776476201485500c68fa144c7266ab6a64a07c31210ec6bae1efd39"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485922355",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630017",
+            "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485955123",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457485987891",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486020659",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486053427",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486086195",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486118963",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486151731",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486184499",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486217267",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486250035",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486282803",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486315571",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486348339",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486381107",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486413875",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486446643",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486479411",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486512179",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486544947",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436006451",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616815667",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379304",
+            "compareDigest": "b4e0018499c550513f5ca90e1803e00329cd725c48cb097eb1cced520caa18fd"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616848435",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173175859": {
+      "id": "gid://shopify/Product/7950173175859",
+      "title": "Siltech Grain Fabric - Color 17 | Carnegie",
+      "handle": "siltech-grain-fabric-color-17",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#A65421",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Rust",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837132992563",
+            "sku": "DWAG-379304",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133025331",
+            "sku": "DWAG-379304-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732842700851",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842733619",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842766387",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842799155",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842831923",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842864691",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842897459",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842930227",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842962995",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732842995763",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843028531",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843061299",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843094067",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 17",
+            "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843126835",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 17",
+            "compareDigest": "bec3e88f5fbdc072e4532a114c17c584d372d430b84e082e3a0545aa5ba83cf7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843159603",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#A65421",
+            "compareDigest": "9420d7e81749bc43d21b6912de99cd2585035053bfdc45e2466f060e146e68b6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843192371",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843225139",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843257907",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630017",
+            "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843290675",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630017",
+            "compareDigest": "a5e303b9479df04c5463f705e4df29ad9cb2e3dfcf4a65523e3d5e0702329c02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843323443",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843356211",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843388979",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843421747",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 17 | Carnegie",
+            "compareDigest": "5f2743c8704e1763cc471e34f22b390cfdf22c10a7c3b90b488eb71868ddba87"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136266291": {
+      "id": "gid://shopify/Product/7923136266291",
+      "title": "Carnegie Siltech Grain 18 Fabric",
+      "handle": "carnegie-siltech-grain-camel",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630018",
+        "Camel",
+        "Carnegie",
+        "display_variant",
+        "Honey",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753422712883",
+            "sku": "DWAG-379305",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753422745651",
+            "sku": "DWAG-379305-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165404586035",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630018",
+            "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165404618803",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630018",
+            "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165404651571",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956431923",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956464691",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956497459",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956530227",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956562995",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956595763",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956628531",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956661299",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956694067",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956726835",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956759603",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956792371",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956825139",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Camel",
+            "compareDigest": "0678d1dee0e2362af2b9da87d9bf10f9f463de3dba6329a2e9f872212178658e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956857907",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 18",
+            "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956890675",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#C88A43",
+            "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956923443",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956956211",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165956988979",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957021747",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957054515",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957087283",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957120051",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Honey | Carnegie",
+            "compareDigest": "bf66497022a80ccbb246a29daacd73cbef9fb02a651c7eadcd487f6d7a3ef6e1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668051507",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Camel",
+            "compareDigest": "0678d1dee0e2362af2b9da87d9bf10f9f463de3dba6329a2e9f872212178658e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668084275",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#C88A43",
+            "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183696830515",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#C88A43",
+            "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854274611",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379305",
+            "compareDigest": "2a15e9c56ec2087da7a41239f3462710999fa2610e75a8e7976f9e62885cd951"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854307379",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854340147",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854372915",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854405683",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854438451",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409408909363",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630018\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "ab7a3bdd87d8045fc7477816339208b9f6bb32cb70b79d95385a710132d38ea6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486577715",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630018",
+            "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486610483",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486643251",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486676019",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486708787",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486741555",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486774323",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486807091",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486839859",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486872627",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486905395",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486938163",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457486970931",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487003699",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487036467",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487069235",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487102003",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487134771",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487167539",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487200307",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436235827",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616881203",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379305",
+            "compareDigest": "2a15e9c56ec2087da7a41239f3462710999fa2610e75a8e7976f9e62885cd951"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546616913971",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173241395": {
+      "id": "gid://shopify/Product/7950173241395",
+      "title": "Siltech Grain Fabric - Color 18 | Carnegie",
+      "handle": "siltech-grain-fabric-color-18",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#C88A43",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "Honey",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133123635",
+            "sku": "DWAG-379305",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133156403",
+            "sku": "DWAG-379305-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732843749427",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843782195",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843814963",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843847731",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843880499",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843913267",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843946035",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732843978803",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844011571",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844044339",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844077107",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844109875",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844142643",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 18",
+            "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844175411",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 18",
+            "compareDigest": "262ce6b984ea9c0da26b59762b5c543d27d818cfba33112bd25d2ebcaf5893f7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844208179",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#C88A43",
+            "compareDigest": "ad8d17ec863887c04a2148e805f521980d84f76c85ff7a6d0c3ff3807b7db5a8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844240947",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844273715",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844306483",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630018",
+            "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844339251",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630018",
+            "compareDigest": "d6cc3b080983ce86035a81fac7848fb9b44243b83ce10502485fb8a5a4568b18"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844372019",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844404787",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844437555",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844470323",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 18 | Carnegie",
+            "compareDigest": "7ea5e1a2b97c2569a05797dbe5777bbfab12147d80644855c7c9dd5f98409e43"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136397363": {
+      "id": "gid://shopify/Product/7923136397363",
+      "title": "Carnegie Siltech Grain 19 Fabric",
+      "handle": "carnegie-siltech-grain-wheat",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630019",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Oatmeal",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm",
+        "Wheat"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753423007795",
+            "sku": "DWAG-379306",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753423040563",
+            "sku": "DWAG-379306-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165405503539",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630019",
+            "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165405536307",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630019",
+            "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165405569075",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957283891",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957316659",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957349427",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957382195",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957414963",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957447731",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957480499",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957513267",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957546035",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957578803",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957611571",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957644339",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957677107",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Wheat",
+            "compareDigest": "93c9b6501de092664987def37bd9b839457255e45fe1c3572e8845b7b6ede41f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957709875",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 19",
+            "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957742643",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#E9CEA4",
+            "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957775411",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957808179",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957840947",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957873715",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957906483",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957939251",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165957972019",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Oatmeal 06 | Carnegie",
+            "compareDigest": "c2acc202921c70b6ecb82e2f6730b001433812933f3e51d9a48619d3e2624868"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668280883",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Wheat",
+            "compareDigest": "93c9b6501de092664987def37bd9b839457255e45fe1c3572e8845b7b6ede41f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668313651",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#E9CEA4",
+            "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183696928819",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#E9CEA4",
+            "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854471219",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379306",
+            "compareDigest": "56eeb2ce44a1ee72797813325f956543466d9609c7eeb07eef45c433cecba6c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854503987",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854536755",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854569523",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854602291",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854635059",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409408974899",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630019\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "47497d6d9b60ffb9a6dd8e89c0521568b5608b2b3d2f77f569353c3a565753b9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487233075",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630019",
+            "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487265843",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487298611",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487331379",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487364147",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487396915",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487429683",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487462451",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487495219",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487527987",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487560755",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487593523",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487626291",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487659059",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487691827",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487724595",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487757363",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487790131",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487822899",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487855667",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436465203",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546617733171",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379306",
+            "compareDigest": "56eeb2ce44a1ee72797813325f956543466d9609c7eeb07eef45c433cecba6c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546617765939",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173339699": {
+      "id": "gid://shopify/Product/7950173339699",
+      "title": "Siltech Grain Fabric - Color 19 | Carnegie",
+      "handle": "siltech-grain-fabric-color-19",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#E9CEA4",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Oatmeal",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133287475",
+            "sku": "DWAG-379306",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133320243",
+            "sku": "DWAG-379306-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732844666931",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844699699",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844732467",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844765235",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844798003",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844830771",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844863539",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844896307",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844929075",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844961843",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732844994611",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845027379",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845060147",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 19",
+            "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845092915",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 19",
+            "compareDigest": "305c0727380959cf54d152b1b9bc46d27e4d2bafa5b5a7d484b88fbbeac34ca1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845125683",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#E9CEA4",
+            "compareDigest": "6901a2b32c0a8432c7aa1dfb377c4c1efb53594cb25dd862d501ff821417b352"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845158451",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845191219",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845223987",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630019",
+            "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845256755",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630019",
+            "compareDigest": "239d076d3cd3977bb0ab5b8859cb8878a230de98896a1b704cd0b5a51fe0e57b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845289523",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845322291",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845355059",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845387827",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 19 | Carnegie",
+            "compareDigest": "3fcd189fa5dd6b412b20583fc97f69574f47a7032a8aabbeaf0c0e14b62daa72"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923134791731": {
+      "id": "gid://shopify/Product/7923134791731",
+      "title": "Carnegie Siltech Grain 2 Fabric",
+      "handle": "carnegie-siltech-grain-oatmeal",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63002",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Oatmeal",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753419894835",
+            "sku": "DWAG-379307",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753419927603",
+            "sku": "DWAG-379307-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165390856243",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63002",
+            "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165390889011",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63002",
+            "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165390921779",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165942997043",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943029811",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943062579",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943095347",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943128115",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943160883",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943193651",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943226419",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943259187",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943291955",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943324723",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943357491",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943390259",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Oatmeal",
+            "compareDigest": "d8b4f071f4bbd91641b405242f864733ec8b43390620262393a8e3969ec2852d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943423027",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 2",
+            "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943455795",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#DBCCB4",
+            "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943488563",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943521331",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943554099",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943586867",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943619635",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943652403",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943685171",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Oatmeal 07 | Carnegie",
+            "compareDigest": "1aa9f0e518fefb37c5a9d191a2b0ad3802735022cc05fe7b1f609094e28ccfa4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663136307",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Oatmeal",
+            "compareDigest": "d8b4f071f4bbd91641b405242f864733ec8b43390620262393a8e3969ec2852d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663169075",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#DBCCB4",
+            "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183691620403",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#DBCCB4",
+            "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847491635",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379307",
+            "compareDigest": "ef57f16294896f6003762e20f8a40dd82e9f343e6782810fe320b88caa6c3f13"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847524403",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847557171",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847589939",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847622707",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847655475",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409234026547",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63002\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "605cff385afdd822b9e422ee0a85e04846e41eefb95e1dd405de646065e00b17"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471012915",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63002",
+            "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471045683",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471078451",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471111219",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471143987",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471176755",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471209523",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471242291",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471275059",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471307827",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471340595",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471373363",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471406131",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471438899",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471471667",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471504435",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471537203",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471569971",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471602739",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457471635507",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37458368659507",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546614915123",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379307",
+            "compareDigest": "ef57f16294896f6003762e20f8a40dd82e9f343e6782810fe320b88caa6c3f13"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546614947891",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173372467": {
+      "id": "gid://shopify/Product/7950173372467",
+      "title": "Siltech Grain Fabric - Color 2 | Carnegie",
+      "handle": "siltech-grain-fabric-color-2",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#DBCCB4",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Oatmeal",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133385779",
+            "sku": "DWAG-379307",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133418547",
+            "sku": "DWAG-379307-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732845748275",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845781043",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845813811",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845846579",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845879347",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845912115",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845944883",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732845977651",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846010419",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846043187",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846075955",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846108723",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846141491",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 2",
+            "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846174259",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 2",
+            "compareDigest": "0a12f2a74e57419d966c233017e6111ab6d8e95b01abca5452d971d68ebcbf27"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846207027",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#DBCCB4",
+            "compareDigest": "fb4092690ee343984cd9888c66b7335ed0061ae046566eee006e2e81fed0ef3c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846239795",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846272563",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846305331",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63002",
+            "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846338099",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63002",
+            "compareDigest": "b459177e40ede3369e9f1cda1c08d6749127208835ebc3bf3943898e08bb96d3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846370867",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846403635",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846436403",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846469171",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 2 | Carnegie",
+            "compareDigest": "10da2f8f0217b60874f6c5a640e8a5ce76131758cee311f2357ed5d79566e1de"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136528435": {
+      "id": "gid://shopify/Product/7923136528435",
+      "title": "Carnegie Siltech Grain 20 Fabric",
+      "handle": "carnegie-siltech-grain-cream",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630020",
+        "Bone",
+        "Carnegie",
+        "Cream",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753423302707",
+            "sku": "DWAG-379308",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753423335475",
+            "sku": "DWAG-379308-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165406486579",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630020",
+            "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165406519347",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630020",
+            "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165406552115",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958070323",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958103091",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958135859",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958168627",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958201395",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958234163",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958266931",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958299699",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958332467",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958365235",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958398003",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958430771",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958463539",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Cream",
+            "compareDigest": "1b5e9501b23e07acad3cef4da8da85da5473653984d463ce5f03dacb5507dbbe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958496307",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 20",
+            "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958529075",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#E6D5B2",
+            "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958561843",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958594611",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958627379",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958660147",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958692915",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958725683",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958758451",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Bone | Carnegie",
+            "compareDigest": "196afa26e1a5aa00bd4cd41fffced2f9c345d6800f523274faad2bf963e1aad1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668444723",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Cream",
+            "compareDigest": "1b5e9501b23e07acad3cef4da8da85da5473653984d463ce5f03dacb5507dbbe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668477491",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#E6D5B2",
+            "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183697256499",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#E6D5B2",
+            "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854667827",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379308",
+            "compareDigest": "aea560f4f8db953f26e762f7b11740c161ae4a91488c83e1c0aba9ae27c68207"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854700595",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854733363",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854766131",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854798899",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854831667",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409409204275",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630020\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "e6ae6cf358b76f0ebfb3690ee8340401451bc85f4357c5f651fddd045808b27f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487888435",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630020",
+            "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487921203",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487953971",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457487986739",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488019507",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488052275",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488085043",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488117811",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488150579",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488183347",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488216115",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488248883",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488281651",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488314419",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488347187",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488379955",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488412723",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488445491",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488478259",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488511027",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436563507",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546617798707",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379308",
+            "compareDigest": "aea560f4f8db953f26e762f7b11740c161ae4a91488c83e1c0aba9ae27c68207"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546617831475",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173438003": {
+      "id": "gid://shopify/Product/7950173438003",
+      "title": "Siltech Grain Fabric - Color 20 | Carnegie",
+      "handle": "siltech-grain-fabric-color-20",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#E6D5B2",
+        "Bone",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133484083",
+            "sku": "DWAG-379308",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133516851",
+            "sku": "DWAG-379308-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732846665779",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846698547",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846731315",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846764083",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846796851",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846829619",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846862387",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846895155",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846927923",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846960691",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732846993459",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847026227",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847058995",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 20",
+            "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847091763",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 20",
+            "compareDigest": "eeae1eeddda43a4b6e236235c3cf1d8571d3e652812e94d798a740d172f98186"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847124531",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#E6D5B2",
+            "compareDigest": "c4b2306c94392a470b75739559ed8326a861acc6ceac0f49ed4e06d0b0e1e4cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847157299",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847190067",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847222835",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630020",
+            "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847255603",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630020",
+            "compareDigest": "b8c19caa1bf84608004af7fcd86140c388e98fdc3a9d19fcaabe3a31b5429b59"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847288371",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847321139",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847353907",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847386675",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 20 | Carnegie",
+            "compareDigest": "02b04c05304b165722b472ff7dcd85ed630abbab45346367a8adc9459cb41351"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136692275": {
+      "id": "gid://shopify/Product/7923136692275",
+      "title": "Carnegie Siltech Grain 21 Fabric",
+      "handle": "carnegie-siltech-grain-honey",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630021",
+        "Carnegie",
+        "display_variant",
+        "Honey",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Tan",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753423564851",
+            "sku": "DWAG-379309",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753423597619",
+            "sku": "DWAG-379309-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165407273011",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630021",
+            "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165407305779",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630021",
+            "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165407338547",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958922291",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958955059",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165958987827",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959020595",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959053363",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959086131",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959118899",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959151667",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959184435",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959217203",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959249971",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959282739",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959315507",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Honey",
+            "compareDigest": "0866fbf676d72dc089b6d926cf1da7c6ec4c5ed5ec1ed879c67224900af9893f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959348275",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 21",
+            "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959381043",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#C49E66",
+            "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959413811",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959446579",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959479347",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959512115",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959544883",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959577651",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959610419",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Tan | Carnegie",
+            "compareDigest": "abeb34ee4c0928c9b89141b022235adcaf70562a4c6c44bc9cf1c7a6e7413f16"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668674099",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Honey",
+            "compareDigest": "0866fbf676d72dc089b6d926cf1da7c6ec4c5ed5ec1ed879c67224900af9893f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668706867",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#C49E66",
+            "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183697420339",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#C49E66",
+            "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854864435",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379309",
+            "compareDigest": "5eab40cb45391f22a5c0d1d94f47b9cc6760539382414f9102e0b0ca826a52aa"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854897203",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854929971",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854962739",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403854995507",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855061043",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409409269811",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630021\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "478ab8b2d7fffb44a15bb46d95372db07869d8e9fc365af08c69b2227e235319"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488543795",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630021",
+            "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488576563",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488609331",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488642099",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488674867",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488707635",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488740403",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488773171",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488805939",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488838707",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488871475",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488904243",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488937011",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457488969779",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489002547",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489035315",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489068083",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489100851",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489133619",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489166387",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436596275",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618028083",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379309",
+            "compareDigest": "5eab40cb45391f22a5c0d1d94f47b9cc6760539382414f9102e0b0ca826a52aa"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618060851",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173503539": {
+      "id": "gid://shopify/Product/7950173503539",
+      "title": "Siltech Grain Fabric - Color 21 | Carnegie",
+      "handle": "siltech-grain-fabric-color-21",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#C49E66",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Tan",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133647923",
+            "sku": "DWAG-379309",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133680691",
+            "sku": "DWAG-379309-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732847517747",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847550515",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847583283",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847616051",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847648819",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847681587",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847714355",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847747123",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847779891",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847812659",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847845427",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847878195",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847910963",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 21",
+            "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847943731",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 21",
+            "compareDigest": "a4f3bf3fce104abb14ff76b34ee3cc1cf4930180fa26ea48d1b4a23a7754917e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732847976499",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#C49E66",
+            "compareDigest": "a9fea22cf1c463defa47f2531fe98f3b2c38eca0111d988145a81d09b7bc5bb0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848009267",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848042035",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848074803",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630021",
+            "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848107571",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630021",
+            "compareDigest": "91d02a5b060679067cc64bdbe0fc6d0b1a270e1b46d2af63b99b8e61c1596b20"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848140339",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848173107",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848205875",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848238643",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 21 | Carnegie",
+            "compareDigest": "4e350256fdfe73292e1c8aa640dbb3306184d6f6e3ffdd3b364aab53b0b034b3"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136823347": {
+      "id": "gid://shopify/Product/7923136823347",
+      "title": "Carnegie Siltech Grain 22 Fabric",
+      "handle": "carnegie-siltech-grain-khaki",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630022",
+        "Bronze",
+        "Carnegie",
+        "display_variant",
+        "Khaki",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753423826995",
+            "sku": "DWAG-379310",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753423859763",
+            "sku": "DWAG-379310-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165408026675",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630022",
+            "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165408059443",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630022",
+            "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165408092211",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959643187",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959675955",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959708723",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959741491",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959774259",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959807027",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959839795",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959872563",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959905331",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959938099",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165959970867",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960003635",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960036403",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Khaki",
+            "compareDigest": "3bc5d9a84ab42b9dd89a5fd4ec64baaeae033bcbb833b5e2cfec64056c927a7a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960069171",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 22",
+            "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960101939",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#8E7759",
+            "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960134707",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960167475",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960200243",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960233011",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960265779",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960298547",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960331315",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Bronze | Carnegie",
+            "compareDigest": "b5ea3d416599caefb8258feddb1557948f458d849c2640d037614429606d8223"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668837939",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Khaki",
+            "compareDigest": "3bc5d9a84ab42b9dd89a5fd4ec64baaeae033bcbb833b5e2cfec64056c927a7a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180668870707",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#8E7759",
+            "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183698075699",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#8E7759",
+            "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855093811",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379310",
+            "compareDigest": "74c8745f5f30d61f7e0ca612c9ad4ec5836a97dd1eb890cc50a563fdcaa22928"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855126579",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855159347",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855192115",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855224883",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855257651",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409409466419",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630022\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "5a996bacbdf6269fdc7a2e4c5c8ef8be763a7ff6f104914358a40c3b69837389"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489199155",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630022",
+            "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489231923",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489264691",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489297459",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489330227",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489362995",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489395763",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489428531",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489461299",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489494067",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489526835",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489559603",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489592371",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489625139",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489657907",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489690675",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489723443",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489756211",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489788979",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489821747",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436694579",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618126387",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379310",
+            "compareDigest": "74c8745f5f30d61f7e0ca612c9ad4ec5836a97dd1eb890cc50a563fdcaa22928"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618159155",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173569075": {
+      "id": "gid://shopify/Product/7950173569075",
+      "title": "Siltech Grain Fabric - Color 22 | Carnegie",
+      "handle": "siltech-grain-fabric-color-22",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#8E7759",
+        "Bronze",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133778995",
+            "sku": "DWAG-379310",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133811763",
+            "sku": "DWAG-379310-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732848566323",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848599091",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848631859",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848664627",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848697395",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848730163",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848762931",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848795699",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848828467",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848861235",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848894003",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848926771",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848959539",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 22",
+            "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732848992307",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 22",
+            "compareDigest": "e58c4fadd5284aa821737b3d42031fbde6de3947a5e4c903d947ede3b15ed1cb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849025075",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#8E7759",
+            "compareDigest": "04517203cc0584e2519b31aff91817e03b5bb20f93db79018c33c68f9bc98a8b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849057843",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849090611",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849123379",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630022",
+            "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849156147",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630022",
+            "compareDigest": "da996428bd7b2c1e7e3c1f89e76102799ebe8b185b3d46238524e79fe842f220"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849188915",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849221683",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849254451",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849287219",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 22 | Carnegie",
+            "compareDigest": "b99764be3750bfae3112a9ec2a6440c9678f741a16a6a9d7f5c18f7e6e62c9f7"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923136987187": {
+      "id": "gid://shopify/Product/7923136987187",
+      "title": "Carnegie Siltech Grain 23 Fabric",
+      "handle": "carnegie-siltech-grain-fawn",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630023",
+        "Carnegie",
+        "display_variant",
+        "Fawn",
+        "Leather-Look",
+        "Olive",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753424154675",
+            "sku": "DWAG-379311",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753424187443",
+            "sku": "DWAG-379311-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165409042483",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630023",
+            "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165409075251",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630023",
+            "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165409108019",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960462387",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960495155",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960527923",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960560691",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960593459",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960626227",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960658995",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960691763",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960724531",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960757299",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960790067",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960822835",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960855603",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Fawn",
+            "compareDigest": "bfe57f98fef4a621ef72c334fda6183e06b3fed6a5a0fd29fada4fe079564b1a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960888371",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 23",
+            "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960921139",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#7F6B47",
+            "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960953907",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165960986675",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961019443",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961052211",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961084979",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961117747",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961150515",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Olive | Carnegie",
+            "compareDigest": "d4006e2eef976b9adc697ad82fc12f5ec0b7d527579c692988a772c8f3b5271a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180669853747",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Fawn",
+            "compareDigest": "bfe57f98fef4a621ef72c334fda6183e06b3fed6a5a0fd29fada4fe079564b1a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180669886515",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#7F6B47",
+            "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183698436147",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#7F6B47",
+            "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855290419",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379311",
+            "compareDigest": "7d10e6bac101b6c31d4637c70b1cf013fb4bfba11d2f55c7ea112931323d94fa"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855323187",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855355955",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855388723",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855421491",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855454259",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409409499187",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630023\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "4b7ea0b7ef87646f12e2f98040ca9d5b4d19a1d0ea7c0e173091e6ada247907e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489887283",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630023",
+            "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489920051",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489952819",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457489985587",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490018355",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490051123",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490083891",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490116659",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490149427",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490182195",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490214963",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490247731",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490280499",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490313267",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490346035",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490378803",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490411571",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490444339",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490477107",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490509875",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436792883",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618191923",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379311",
+            "compareDigest": "7d10e6bac101b6c31d4637c70b1cf013fb4bfba11d2f55c7ea112931323d94fa"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618224691",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173634611": {
+      "id": "gid://shopify/Product/7950173634611",
+      "title": "Siltech Grain Fabric - Color 23 | Carnegie",
+      "handle": "siltech-grain-fabric-color-23",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#7F6B47",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Olive",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837133877299",
+            "sku": "DWAG-379311",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837133910067",
+            "sku": "DWAG-379311-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732849942579",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732849975347",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850008115",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850040883",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850073651",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850106419",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850139187",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850171955",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850204723",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850237491",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850270259",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850303027",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850335795",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 23",
+            "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850368563",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 23",
+            "compareDigest": "779c29da99cd0abfb30e029e438934f977a57b57077d952f68dec8a827a16806"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850401331",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#7F6B47",
+            "compareDigest": "a3a6a6d29e70af8b06afa23f5d674020a2ed57163a6ed9f556628ccf436783ee"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850434099",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850466867",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850499635",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630023",
+            "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850532403",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630023",
+            "compareDigest": "c29e3df78b17dbbc4b87ac4581a82803e9c1c784a528d1ea87979d512e9c3cb8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850565171",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850597939",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850630707",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732850663475",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 23 | Carnegie",
+            "compareDigest": "42543f14b1b1b49a250f175b2bf0d2e6e888cda9f749a1824e3b3cfeb180050f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923137216563": {
+      "id": "gid://shopify/Product/7923137216563",
+      "title": "Carnegie Siltech Grain 24 Fabric",
+      "handle": "carnegie-siltech-grain-chestnut",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630024",
+        "Carnegie",
+        "Chestnut",
+        "Cognac",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753424482355",
+            "sku": "DWAG-379312",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753424515123",
+            "sku": "DWAG-379312-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165409730611",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630024",
+            "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165409763379",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630024",
+            "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165409796147",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961281587",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961314355",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961347123",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961379891",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961412659",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961445427",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961478195",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961510963",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961543731",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961576499",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961609267",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961642035",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961674803",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Chestnut",
+            "compareDigest": "1b1f493bbdc04a3c7812797768b4b66b6f01ecf8f0603e66719e88990e45b604"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961707571",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 24",
+            "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961740339",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#805E39",
+            "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961773107",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961805875",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961838643",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961871411",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961904179",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961936947",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165961969715",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Cognac | Carnegie",
+            "compareDigest": "3d3aadf1a08dca1d6d6265065403a350efafac8e14d42c06fe3f9538870bf021"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670246963",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Chestnut",
+            "compareDigest": "1b1f493bbdc04a3c7812797768b4b66b6f01ecf8f0603e66719e88990e45b604"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670279731",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#805E39",
+            "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183698632755",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#805E39",
+            "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855487027",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379312",
+            "compareDigest": "2869af0cba6ba25144c5d317a7e2f1ed39ed71ab4c1b78bcb562b076864c58ca"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855519795",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855552563",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855585331",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855618099",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855650867",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409409663027",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630024\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "fca016080085843e3c42ca02ca98037b9c33ac8005c19fbeaadaa1a124c01aa4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490706483",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630024",
+            "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490739251",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490772019",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490804787",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490837555",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490870323",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490903091",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490935859",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457490968627",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491001395",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491034163",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491066931",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491099699",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491132467",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491165235",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491198003",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491230771",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491263539",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491296307",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491329075",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461436923955",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618257459",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379312",
+            "compareDigest": "2869af0cba6ba25144c5d317a7e2f1ed39ed71ab4c1b78bcb562b076864c58ca"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618290227",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173700147": {
+      "id": "gid://shopify/Product/7950173700147",
+      "title": "Siltech Grain Fabric - Color 24 | Carnegie",
+      "handle": "siltech-grain-fabric-color-24",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#805E39",
+        "Carnegie",
+        "Cognac",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134008371",
+            "sku": "DWAG-379312",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134041139",
+            "sku": "DWAG-379312-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732851449907",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851482675",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851515443",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851548211",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851580979",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851613747",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851646515",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851679283",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851712051",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851744819",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851777587",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851810355",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851843123",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 24",
+            "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851875891",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 24",
+            "compareDigest": "85c259e6e3e259936bb324bd43c816ea50eca18be1324c1460c7a1e189048deb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851908659",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#805E39",
+            "compareDigest": "56c56f9e227b828b712c8b05b9776ee7dcea3e1777e54c8ee07df0a239a7d58d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851941427",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732851974195",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852006963",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630024",
+            "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852039731",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630024",
+            "compareDigest": "a1bd9071852387dcefad97519b0292b15b18543b33ee88aef422261776b7eea4"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852072499",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852105267",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852138035",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732852170803",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 24 | Carnegie",
+            "compareDigest": "d3e93abf04eba76c707661006372333149e865491d4ee697f5c75538674a6dbc"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923137347635": {
+      "id": "gid://shopify/Product/7923137347635",
+      "title": "Carnegie Siltech Grain 25 Fabric",
+      "handle": "carnegie-siltech-grain-cocoa",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630025",
+        "Carnegie",
+        "Cocoa",
+        "display_variant",
+        "Leather-Look",
+        "Saddle",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753424711731",
+            "sku": "DWAG-379313",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753424744499",
+            "sku": "DWAG-379313-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165410615347",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630025",
+            "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165410648115",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630025",
+            "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165410680883",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962068019",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962100787",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962133555",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962166323",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962199091",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962231859",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962264627",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962297395",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962330163",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962362931",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962395699",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962428467",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962461235",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Cocoa",
+            "compareDigest": "838aa664cdf1fceac3bc377992d3279f7fc0b4efc24ade5f1509e256087f19f6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962494003",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 25",
+            "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962526771",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#69513C",
+            "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962559539",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962592307",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962625075",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962657843",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962690611",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962723379",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962756147",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Saddle | Carnegie",
+            "compareDigest": "dc6e8506520a05be445e09cafa9e58367c5c00c09cd24155e0272ab3eae1ee5e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670672947",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Cocoa",
+            "compareDigest": "838aa664cdf1fceac3bc377992d3279f7fc0b4efc24ade5f1509e256087f19f6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670705715",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#69513C",
+            "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183699451955",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#69513C",
+            "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855683635",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379313",
+            "compareDigest": "fb1e292dbbff2614e2c94e75f4b79f35f159fd94063abcd90bd7d23c434d8598"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855716403",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855749171",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855781939",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855814707",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403855847475",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409410351155",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630025\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "e61a661163e47aac99bc670ff28bff64a0f32b5aa5c8fe28c0622aca9512b7b2"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491361843",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630025",
+            "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491394611",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491427379",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491460147",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491492915",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491525683",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491558451",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491591219",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491623987",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491656755",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491689523",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491722291",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491755059",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491787827",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491820595",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491853363",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491886131",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491918899",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491951667",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457491984435",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461437317171",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618585139",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379313",
+            "compareDigest": "fb1e292dbbff2614e2c94e75f4b79f35f159fd94063abcd90bd7d23c434d8598"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618617907",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173765683": {
+      "id": "gid://shopify/Product/7950173765683",
+      "title": "Siltech Grain Fabric - Color 25 | Carnegie",
+      "handle": "siltech-grain-fabric-color-25",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#69513C",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Saddle",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134172211",
+            "sku": "DWAG-379313",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134204979",
+            "sku": "DWAG-379313-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732853252147",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853284915",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853317683",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853350451",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853383219",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853415987",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853448755",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853481523",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853514291",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853547059",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853579827",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853612595",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853645363",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 25",
+            "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853678131",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 25",
+            "compareDigest": "03fae40e6109ca846312e3067d766b26886e7e89ddddbf7aef5d9cba71c7448f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853710899",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#69513C",
+            "compareDigest": "b8b59c8d11877f7a9ad69e571e0e30ab012df68ad667ce3b44221d939cabd292"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853743667",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853776435",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853809203",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630025",
+            "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853841971",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630025",
+            "compareDigest": "0d9bef4a89b57c5d8240a31e7474005d1af679218e4a7f0c13f2c0e3139b512b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853874739",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853907507",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853940275",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732853973043",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 25 | Carnegie",
+            "compareDigest": "de4ff4a569aeb29adf29b0973ec4f720fd3985520a9df05eeb856f255a3f74a8"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923139936307": {
+      "id": "gid://shopify/Product/7923139936307",
+      "title": "Carnegie Siltech Grain 26 Fabric",
+      "handle": "carnegie-siltech-grain-walnut",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "630026",
+        "Carnegie",
+        "Chestnut",
+        "display_variant",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Walnut",
+        "Warm"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753429725235",
+            "sku": "DWAG-379314",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753429758003",
+            "sku": "DWAG-379314-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165432832051",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630026",
+            "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165432864819",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630026",
+            "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165432897587",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962919987",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962952755",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165962985523",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963018291",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963051059",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963083827",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963116595",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963149363",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963182131",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963214899",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963247667",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963280435",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963313203",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Walnut",
+            "compareDigest": "1a40735ac9fd0876b26aab8e714e7ee40cbbd2d24d1a3025265d6e0df9cf4c34"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963345971",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 26",
+            "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963378739",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#624E3C",
+            "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963411507",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963444275",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963477043",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963509811",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963542579",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963575347",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165963608115",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Chestnut | Carnegie",
+            "compareDigest": "89ce33030afbd49d0e99fe421ec02e96ac2339da58781149a07b0ec0cc64fdcd"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670869555",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Walnut",
+            "compareDigest": "1a40735ac9fd0876b26aab8e714e7ee40cbbd2d24d1a3025265d6e0df9cf4c34"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180670902323",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#624E3C",
+            "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183699648563",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#624E3C",
+            "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856011315",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379314",
+            "compareDigest": "33390e91f6c707633a25ba730f0faffb44624bc2f40b204179cb1a9a635a5813"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856044083",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856076851",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856109619",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856142387",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403856175155",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409410416691",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"630026\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "6fb4edcab4bd17fd7fd7e043682558285115f51eb3b672c3845af51b241a2475"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492049971",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "630026",
+            "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492082739",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492115507",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492148275",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492181043",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492213811",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492246579",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492279347",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492312115",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492344883",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492377651",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492410419",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492443187",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492475955",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492508723",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492541491",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492574259",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492607027",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492639795",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457492672563",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461437513779",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618781747",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379314",
+            "compareDigest": "33390e91f6c707633a25ba730f0faffb44624bc2f40b204179cb1a9a635a5813"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546618814515",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173798451": {
+      "id": "gid://shopify/Product/7950173798451",
+      "title": "Siltech Grain Fabric - Color 26 | Carnegie",
+      "handle": "siltech-grain-fabric-color-26",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#624E3C",
+        "Carnegie",
+        "Chestnut",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134237747",
+            "sku": "DWAG-379314",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134270515",
+            "sku": "DWAG-379314-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732854267955",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854300723",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854333491",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854366259",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854399027",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854431795",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854464563",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854497331",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854530099",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854562867",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854595635",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854628403",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854661171",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 26",
+            "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854693939",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 26",
+            "compareDigest": "a9eb30797cf0e3ab836c0183092107f1c2f91abe6b51fe2ac0601b8d80b532b0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854726707",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#624E3C",
+            "compareDigest": "065fb21b95f70f31b56b163c7119b91c40eddf740731fe04679d3b5a36ed58d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854759475",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854792243",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854825011",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630026",
+            "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854857779",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "630026",
+            "compareDigest": "5d75ad9bb53f40bf97d258785b34a0fc5cfbb039ee2b383dc444decce06fba8c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854890547",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854923315",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854956083",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732854988851",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 26 | Carnegie",
+            "compareDigest": "c32d7434d685bf5ecf277813db3df881ede0927379b6f28f1616652e067ee83b"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923134857267": {
+      "id": "gid://shopify/Product/7923134857267",
+      "title": "Carnegie Siltech Grain 3 Fabric",
+      "handle": "carnegie-siltech-grain-taupe",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63003",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Neutral",
+        "Siltech Grain",
+        "split-batch:TK-10686",
+        "Taupe"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420025907",
+            "sku": "DWAG-379315",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420058675",
+            "sku": "DWAG-379315-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165391544371",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63003",
+            "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165391577139",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63003",
+            "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165391609907",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943914547",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943947315",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165943980083",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944012851",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944045619",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944078387",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944111155",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944143923",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944176691",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944209459",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944242227",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944274995",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944307763",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Taupe",
+            "compareDigest": "cf3c62ad972a64b1cd53e5d0e008a0a379c961e9293692d555042bd6cd185abe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944340531",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 3",
+            "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944373299",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#989281",
+            "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944406067",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944438835",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944471603",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944504371",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944537139",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944569907",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944602675",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Taupe | Carnegie",
+            "compareDigest": "7ceb96520285f08d289ed1d054363634e9aebce8586bfb8211ffc83663793dbe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663693363",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Taupe",
+            "compareDigest": "cf3c62ad972a64b1cd53e5d0e008a0a379c961e9293692d555042bd6cd185abe"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663726131",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#989281",
+            "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183691784243",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#989281",
+            "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847688243",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379315",
+            "compareDigest": "85822703376b596266fb8e26c807743b89f2ed63413b25915d926dd6b3a2ba43"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847721011",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847753779",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847786547",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847819315",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847852083",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409234190387",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63003\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "c66e8add0fcb04fe55ce7760e2ff39f92eef16cf90231590ed1e721d89be24f9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476288563",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63003",
+            "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476321331",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476354099",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476386867",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476419635",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476452403",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476485171",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476517939",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476550707",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476583475",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476616243",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476649011",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476681779",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476714547",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476747315",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476780083",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476812851",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476845619",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476878387",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476911155",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461432959027",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546614980659",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379315",
+            "compareDigest": "85822703376b596266fb8e26c807743b89f2ed63413b25915d926dd6b3a2ba43"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615013427",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173896755": {
+      "id": "gid://shopify/Product/7950173896755",
+      "title": "Siltech Grain Fabric - Color 3 | Carnegie",
+      "handle": "siltech-grain-fabric-color-3",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#989281",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Taupe",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134467123",
+            "sku": "DWAG-379315",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134499891",
+            "sku": "DWAG-379315-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732855316531",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855349299",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855382067",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855414835",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855447603",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855480371",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855513139",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855545907",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855578675",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855611443",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855644211",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855676979",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855709747",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 3",
+            "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855742515",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 3",
+            "compareDigest": "e04fa27971905e555b225f1945be5619eda2969c6c83adf41b9bc25c715e09ae"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855775283",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#989281",
+            "compareDigest": "c60ca5c12d91ee987e172949ad3ffc0a461a7c086b6bd9f47414fe7f35db026b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855808051",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855840819",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855873587",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63003",
+            "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855906355",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63003",
+            "compareDigest": "1ba4840b6ab1e02d27469061f2223cc24bcb67bc6a1115b5ce5710fd82053796"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855939123",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732855971891",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856004659",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856037427",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 3 | Carnegie",
+            "compareDigest": "261330efe267e12eb277ffb3894c3207c1d9867cfb9c0ad6e9acddf1718501f0"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923134955571": {
+      "id": "gid://shopify/Product/7923134955571",
+      "title": "Carnegie Siltech Grain 4 Fabric",
+      "handle": "carnegie-siltech-grain-loden",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63004",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Loden",
+        "Moss",
+        "Neutral",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420222515",
+            "sku": "DWAG-379316",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420255283",
+            "sku": "DWAG-379316-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165392298035",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63004",
+            "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165392330803",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63004",
+            "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165392363571",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944668211",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944700979",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944733747",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944766515",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944799283",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944832051",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944864819",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944897587",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944930355",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944963123",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165944995891",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945028659",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945061427",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Loden",
+            "compareDigest": "7ff1a383d8fdf7fca29faf41dd742f1eebdec966fb544fde57e925335377913b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945094195",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 4",
+            "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945126963",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#525247",
+            "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945159731",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945192499",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945225267",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945258035",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945290803",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945323571",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945356339",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Moss | Carnegie",
+            "compareDigest": "2eb3d6ba93b4f7fc6264a099ff4e152b2d4dec75abb882218611900ba13858e0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663922739",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Loden",
+            "compareDigest": "7ff1a383d8fdf7fca29faf41dd742f1eebdec966fb544fde57e925335377913b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180663955507",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#525247",
+            "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183691980851",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#525247",
+            "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847884851",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379316",
+            "compareDigest": "f99f5a274fa43acfbd0379f0ff65cc8bf773d0d23e928fd4a0fa49ae73e153e8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847917619",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847950387",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403847983155",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848015923",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848048691",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409234255923",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63004\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "d8d74170f001ebed8711d43421e4733847ff5cf7b3bafdce28b11a8319564722"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457476976691",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63004",
+            "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477009459",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477042227",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477074995",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477107763",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477140531",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477173299",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477206067",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477238835",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477271603",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477304371",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477337139",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477369907",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477402675",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477435443",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477468211",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477500979",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477533747",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477566515",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477599283",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433122867",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615242803",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379316",
+            "compareDigest": "f99f5a274fa43acfbd0379f0ff65cc8bf773d0d23e928fd4a0fa49ae73e153e8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615275571",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173929523": {
+      "id": "gid://shopify/Product/7950173929523",
+      "title": "Siltech Grain Fabric - Color 4 | Carnegie",
+      "handle": "siltech-grain-fabric-color-4",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#525247",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "Moss",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134532659",
+            "sku": "DWAG-379316",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134565427",
+            "sku": "DWAG-379316-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732856856627",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856889395",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856922163",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856954931",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732856987699",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857020467",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857053235",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857086003",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857118771",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857151539",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857184307",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857217075",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857249843",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 4",
+            "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857282611",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 4",
+            "compareDigest": "9746ce37e817eb35700f6df9fc5d0569b5a3f9f6f1c7dd19439d87cd7c90fa97"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857315379",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#525247",
+            "compareDigest": "1c12debe0ac4c4b98a501ba653bbbbcea90630ede84361e261ea9a744f264648"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857348147",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857380915",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857413683",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63004",
+            "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857446451",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63004",
+            "compareDigest": "1b080e35a0e2515451e2295b0d7e6da84bab94248521ce204c04aa569416eb58"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857479219",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857511987",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857544755",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732857577523",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 4 | Carnegie",
+            "compareDigest": "b62d9918355a4be8631a9edcff2deef8934a4188dc8cf30a0e7e33fafdadb9e7"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135021107": {
+      "id": "gid://shopify/Product/7923135021107",
+      "title": "Carnegie Siltech Grain 5 Fabric",
+      "handle": "carnegie-siltech-grain-espresso",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63005",
+        "Carnegie",
+        "Dark",
+        "display_variant",
+        "Espresso",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420353587",
+            "sku": "DWAG-379317",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420386355",
+            "sku": "DWAG-379317-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165392855091",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63005",
+            "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165392887859",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63005",
+            "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165392920627",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945487411",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945520179",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945552947",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945585715",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945618483",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945651251",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945684019",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945716787",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945749555",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945782323",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945815091",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945847859",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945880627",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Espresso",
+            "compareDigest": "e8571d9b180e3c7ab97f4b341e06e00ab009499f624bb9b2edbca815146cf1c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945913395",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 5",
+            "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945946163",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#2C251F",
+            "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165945978931",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946011699",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946044467",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946077235",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946110003",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946142771",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946175539",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Espresso 17 | Carnegie",
+            "compareDigest": "368de8b3cc5dbeec0320e9ee0b1afa4815c954d761436e0fefad7cee0fd7c9fb"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664086579",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Espresso",
+            "compareDigest": "e8571d9b180e3c7ab97f4b341e06e00ab009499f624bb9b2edbca815146cf1c9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664119347",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#2C251F",
+            "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183692210227",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#2C251F",
+            "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848081459",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379317",
+            "compareDigest": "aeb8cbde593fe874933a52665e06746e55a20c6e07a46ee7dd52c8b85eaf4d0d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848114227",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848146995",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848179763",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848212531",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848245299",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409234616371",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63005\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "1442361befb057b229e6572ef73e5bd43f9838f5b88b280c6c317c4b255d3061"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477632051",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63005",
+            "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477664819",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477697587",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477730355",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477763123",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477795891",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477828659",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477861427",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477894195",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477926963",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477959731",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457477992499",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478025267",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478058035",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478090803",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478123571",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478156339",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478189107",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478221875",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478254643",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433319475",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615308339",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379317",
+            "compareDigest": "aeb8cbde593fe874933a52665e06746e55a20c6e07a46ee7dd52c8b85eaf4d0d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615341107",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950173995059": {
+      "id": "gid://shopify/Product/7950173995059",
+      "title": "Siltech Grain Fabric - Color 5 | Carnegie",
+      "handle": "siltech-grain-fabric-color-5",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#2C251F",
+        "Carnegie",
+        "display_variant",
+        "Espresso",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134663731",
+            "sku": "DWAG-379317",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134696499",
+            "sku": "DWAG-379317-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732858036275",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858069043",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858101811",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858134579",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858167347",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858200115",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858232883",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858265651",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858298419",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858331187",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858363955",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858396723",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858429491",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 5",
+            "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858462259",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 5",
+            "compareDigest": "2fae33b94917250bfd9e0cbb1352cca340e71d786d3e599dcf79c11f1a7f3b21"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858495027",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#2C251F",
+            "compareDigest": "6fd1ff3911d8b404e198d21a772bc28958fe6f3a361b5fbf1811fc7d27118568"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858527795",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858560563",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858593331",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63005",
+            "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858626099",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63005",
+            "compareDigest": "2d391087c2277fa9f1480957b3b55d94367d792af2d85694e7067c323c09a48b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858658867",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858691635",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858724403",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732858757171",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 5 | Carnegie",
+            "compareDigest": "23d1d461cb9103caf6f817142c2677b2b1eb6525cd4545e58bff9b2b7e7adc95"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135119411": {
+      "id": "gid://shopify/Product/7923135119411",
+      "title": "Carnegie Siltech Grain 6 Fabric",
+      "handle": "carnegie-siltech-grain-onyx",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63006",
+        "Black",
+        "Carnegie",
+        "Dark",
+        "display_variant",
+        "Leather-Look",
+        "Onyx",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420550195",
+            "sku": "DWAG-379318",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420582963",
+            "sku": "DWAG-379318-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165393739827",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63006",
+            "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165393772595",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63006",
+            "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165393805363",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946241075",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946273843",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946306611",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946339379",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946372147",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946404915",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946437683",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946470451",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946503219",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946535987",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946568755",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946601523",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946634291",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Onyx",
+            "compareDigest": "fe33d8dc532851561e8dbe4d294fcd4ec363d3c1047469f00af618fa69133e96"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946667059",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 6",
+            "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946699827",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#201E20",
+            "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946732595",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946765363",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946798131",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946830899",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946863667",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946896435",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165946929203",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Black | Carnegie",
+            "compareDigest": "7657ae1a39abd68a6aaaf35c3188dc626cd108c746a733f7a810383577126483"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664348723",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Onyx",
+            "compareDigest": "fe33d8dc532851561e8dbe4d294fcd4ec363d3c1047469f00af618fa69133e96"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664381491",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#201E20",
+            "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183692898355",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#201E20",
+            "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848278067",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379318",
+            "compareDigest": "01cfc17985b6cf6ef4893b81b14f670eb6efffb5facdb5c69a927eef9d8cac80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848310835",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848343603",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848376371",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848409139",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848441907",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407008819",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63006\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "907f45c523eb0f32c9c1d9aac00a1399bc3090a5faa1478e214d52a7da1f412f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478287411",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63006",
+            "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478320179",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478352947",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478385715",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478418483",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478451251",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478484019",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478516787",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478549555",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478582323",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478615091",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478647859",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478680627",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478713395",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478746163",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478778931",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478811699",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478844467",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478877235",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478910003",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433417779",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615373875",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379318",
+            "compareDigest": "01cfc17985b6cf6ef4893b81b14f670eb6efffb5facdb5c69a927eef9d8cac80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615406643",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950174093363": {
+      "id": "gid://shopify/Product/7950174093363",
+      "title": "Siltech Grain Fabric - Color 6 | Carnegie",
+      "handle": "siltech-grain-fabric-color-6",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#201E20",
+        "Black",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837134860339",
+            "sku": "DWAG-379318",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837134893107",
+            "sku": "DWAG-379318-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732859412531",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859445299",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859478067",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859510835",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859543603",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859576371",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859609139",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859641907",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859674675",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859707443",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859740211",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859772979",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859805747",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 6",
+            "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859838515",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 6",
+            "compareDigest": "c6010c2ce09cf3bb2f86eb17145d79f714c53ed7c49f417c5f4cd83c6ec8b252"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859871283",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#201E20",
+            "compareDigest": "48992e700c85539807e253091fc2ad98e98fc0e269a4178f82c09898527d31d1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859904051",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859936819",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732859969587",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63006",
+            "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860002355",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63006",
+            "compareDigest": "595bf0f019209321ee11158a1ef35db6e0144a9132da6e53ac6bbec5d37bb7b5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860035123",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860067891",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860100659",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860133427",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 6 | Carnegie",
+            "compareDigest": "05b2cbdaf991bad97824223bb2f406cfbce9955ca509c7e99da36b390653115f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135250483": {
+      "id": "gid://shopify/Product/7923135250483",
+      "title": "Carnegie Siltech Grain 7 Fabric",
+      "handle": "carnegie-siltech-grain-ink",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63007",
+        "Carnegie",
+        "Dark",
+        "display_variant",
+        "Graphite",
+        "Ink",
+        "Leather-Look",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420681267",
+            "sku": "DWAG-379319",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420714035",
+            "sku": "DWAG-379319-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165394427955",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63007",
+            "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165394460723",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63007",
+            "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165394493491",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947158579",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947191347",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947224115",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947256883",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947289651",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947322419",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947355187",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947387955",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947420723",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947453491",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947486259",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947519027",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947551795",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Ink",
+            "compareDigest": "f6a45bf8acc6405a3d61cdf2c76185b050d610e57e5f2d4b3154fd8d1f350023"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947584563",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 7",
+            "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947617331",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#242731",
+            "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947650099",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947682867",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947715635",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947748403",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947781171",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947813939",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165947846707",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Graphite 19 | Carnegie",
+            "compareDigest": "cf7c567e2d6d7357d12f94bf862be17a31fe0599cac073f33a0cd9c9f5d77a02"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664676403",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Ink",
+            "compareDigest": "f6a45bf8acc6405a3d61cdf2c76185b050d610e57e5f2d4b3154fd8d1f350023"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664709171",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#242731",
+            "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183693127731",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#242731",
+            "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848474675",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379319",
+            "compareDigest": "f600320e39442bdb00e77bd129344ef3d6d37368d469c3afb406ebc51cbbc3ea"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848507443",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848540211",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848572979",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848605747",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848638515",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407041587",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63007\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "8c66fbfb2eb1242d5383580cc6f5f9017acc883e36aefbc06e6ec9d786be7d37"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457478975539",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63007",
+            "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479008307",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479041075",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479073843",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479106611",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479139379",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479172147",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479204915",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479237683",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479270451",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479303219",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479335987",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479368755",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479401523",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479434291",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479467059",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479499827",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479532595",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479565363",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479598131",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433516083",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615472179",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379319",
+            "compareDigest": "f600320e39442bdb00e77bd129344ef3d6d37368d469c3afb406ebc51cbbc3ea"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615504947",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950174191667": {
+      "id": "gid://shopify/Product/7950174191667",
+      "title": "Siltech Grain Fabric - Color 7 | Carnegie",
+      "handle": "siltech-grain-fabric-color-7",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#242731",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "Graphite",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837135024179",
+            "sku": "DWAG-379319",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837135056947",
+            "sku": "DWAG-379319-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732860559411",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860592179",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860624947",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860657715",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860690483",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860723251",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860756019",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860788787",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860821555",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860854323",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860887091",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860919859",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860952627",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 7",
+            "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732860985395",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 7",
+            "compareDigest": "242841107ba59e6b94c75e8592ff39f572deee478f00f06aab3080d56e04b723"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861018163",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#242731",
+            "compareDigest": "dc9292a9ba56b739d9e1308e8ab736a59a54d00a253b88ad5c703c01c0ba87de"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861050931",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861083699",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861116467",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63007",
+            "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861149235",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63007",
+            "compareDigest": "81c172cac894deb4d5c2c9383eb606bd146b152be6531f52ceb4281302c8077d"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861182003",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861214771",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861247539",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861280307",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 7 | Carnegie",
+            "compareDigest": "7bf0feb7f0a650b04fb5c190ba553dc269800f24957a24fbdb0677b354124810"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135348787": {
+      "id": "gid://shopify/Product/7923135348787",
+      "title": "Carnegie Siltech Grain 8 Fabric",
+      "handle": "carnegie-siltech-grain-navy",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63008",
+        "Carnegie",
+        "Dark",
+        "display_variant",
+        "Graphite",
+        "Leather-Look",
+        "Navy",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753420877875",
+            "sku": "DWAG-379320",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753420910643",
+            "sku": "DWAG-379320-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165395214387",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63008",
+            "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165395247155",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63008",
+            "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165395312691",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948043315",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948076083",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948108851",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948141619",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948174387",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948207155",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948239923",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948272691",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948305459",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948338227",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948370995",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948403763",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948436531",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Navy",
+            "compareDigest": "f1dea30deb3205c9da62dea64764df3d75af64e487b72208d835924a7eafecb2"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948469299",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 8",
+            "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948502067",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#1C2836",
+            "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948534835",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948567603",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948600371",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948633139",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948665907",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948698675",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948731443",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Graphite 20 | Carnegie",
+            "compareDigest": "9bdc8ec864f785aad7fe13b6470699710a3390f70551c78bb3a60f39a0c58f43"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180664971315",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Navy",
+            "compareDigest": "f1dea30deb3205c9da62dea64764df3d75af64e487b72208d835924a7eafecb2"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180665004083",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#1C2836",
+            "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183693324339",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#1C2836",
+            "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848671283",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379320",
+            "compareDigest": "c58b7a7a7da06f45cac319fa3c3f0d6881858393f1c1ebaeff949081e15c1599"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848704051",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848736819",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848769587",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848802355",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848835123",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407074355",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63008\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "8951f32f4f64423e9e1dbe014fd15d025a217ae300cc93009cbaa8da3bf07751"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479893043",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63008",
+            "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479925811",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479958579",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457479991347",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480024115",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480056883",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480089651",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480122419",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480155187",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480187955",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480220723",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480253491",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480286259",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480319027",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480351795",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480384563",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480417331",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480450099",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480482867",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480515635",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433548851",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615636019",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379320",
+            "compareDigest": "c58b7a7a7da06f45cac319fa3c3f0d6881858393f1c1ebaeff949081e15c1599"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615668787",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950174224435": {
+      "id": "gid://shopify/Product/7950174224435",
+      "title": "Siltech Grain Fabric - Color 8 | Carnegie",
+      "handle": "siltech-grain-fabric-color-8",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#1C2836",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "Graphite",
+        "New Arrival",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837135122483",
+            "sku": "DWAG-379320",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837135155251",
+            "sku": "DWAG-379320-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732861378611",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861411379",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861444147",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861476915",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861509683",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861542451",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861575219",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861607987",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861640755",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861673523",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861706291",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861739059",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861771827",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 8",
+            "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861804595",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 8",
+            "compareDigest": "93a57b14ae98121caac572a3bae0c99bdbf1fd83f81dd7c2b6381764963e9b0a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861837363",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#1C2836",
+            "compareDigest": "7bff37ea866bc6f9367e6924b3abbaf83b25bd6f541af12863f83160cc060f11"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861870131",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861902899",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861935667",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63008",
+            "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732861968435",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63008",
+            "compareDigest": "a53989e60a6dd685c7e9d9e1d6cc60ce5a3830c0e5d54e39b7daa655dc7bc424"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862001203",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862033971",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862066739",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862099507",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 8 | Carnegie",
+            "compareDigest": "6a261263d67cdad8bb58f71dcc65ce1a00a6fc4e666d62486a1bd412ac47c1fe"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7923135414323": {
+      "id": "gid://shopify/Product/7923135414323",
+      "title": "Carnegie Siltech Grain 9 Fabric",
+      "handle": "carnegie-siltech-grain-sage",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "63009",
+        "Carnegie",
+        "display_variant",
+        "Leather-Look",
+        "Neutral",
+        "Sage",
+        "Siltech Grain",
+        "split-batch:TK-10686"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44753421008947",
+            "sku": "DWAG-379321",
+            "title": "Fabric",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44753421041715",
+            "sku": "DWAG-379321-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37165395804211",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63009",
+            "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165395836979",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63009",
+            "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165395869747",
+            "namespace": "global",
+            "key": "Brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948928051",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948960819",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165948993587",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949026355",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949059123",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949091891",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949124659",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949157427",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949190195",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949222963",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949255731",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949288499",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949321267",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Sage",
+            "compareDigest": "721935dc461db9249daccb0e0b262702a7bb40a7eeda36518dd9d61f7e392b39"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949354035",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 9",
+            "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949386803",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#829590",
+            "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949419571",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949452339",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949485107",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949517875",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949550643",
+            "namespace": "custom",
+            "key": "material_category",
+            "type": "single_line_text_field",
+            "value": "Silicone",
+            "compareDigest": "a3485ebb79c07580884dfa12032fdd8898dc80223ae26380b60ca3552cbd7c73"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949583411",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37165949616179",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Carnegie Siltech Grain Sage | Carnegie",
+            "compareDigest": "9bbd779de88d373d181aa7a4464cfe3b9c5c95fc7d709d1230225a9e9b3402b3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180665167923",
+            "namespace": "global",
+            "key": "Color",
+            "type": "single_line_text_field",
+            "value": "Sage",
+            "compareDigest": "721935dc461db9249daccb0e0b262702a7bb40a7eeda36518dd9d61f7e392b39"
+          },
+          {
+            "id": "gid://shopify/Metafield/37180665200691",
+            "namespace": "custom",
+            "key": "Color Hex",
+            "type": "single_line_text_field",
+            "value": "#829590",
+            "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+          },
+          {
+            "id": "gid://shopify/Metafield/37183693488179",
+            "namespace": "custom",
+            "key": "swatch_hex",
+            "type": "single_line_text_field",
+            "value": "#829590",
+            "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848867891",
+            "namespace": "dwc",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379321",
+            "compareDigest": "4a3a49b185a3e0e78a6327fe3da197ae6b0b5c0e22e098389421bc7e0d588d36"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403848900659",
+            "namespace": "dwc",
+            "key": "content",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852308531",
+            "namespace": "dwc",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852341299",
+            "namespace": "dwc",
+            "key": "flammability",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852374067",
+            "namespace": "dwc",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37403852406835",
+            "namespace": "dwc",
+            "key": "product_type",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37409407107123",
+            "namespace": "custom",
+            "key": "manufacturer_specs",
+            "type": "json",
+            "value": "{\"manufacturer\":\"Carnegie\",\"manufacturer_sku\":\"63009\",\"source_url\":\"https://carnegiefabrics.com/grain-6300-upholstery\",\"specs\":{\"Type\":\"Suitable for Indoor and Outdoor use\",\"Width\":\"55\\\" (140 cm)\",\"Backing\":\"Unbacked\",\"Free of\":\"Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes\",\"Contents\":\"Face: 100% Silicone Back: 100% Polyester Double Knit\",\"Warranty\":\"10 years\",\"Durability\":\"No wear 200,000 double rubs\",\"Hydrolysis\":\"ISO 1419 (Tropical Test Method C) 15 weeks\",\"ACT Symbols\":\"\",\"Flammability\":\"BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark\",\"Cleaning Code\":\"WS & BC - Water/Solvent & Bleach Cleanable\",\"Lightfastness\":\"1,000 hours lightfastness\",\"Manufactured In\":\"China\",\"Additional Details\":\"Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes\",\"Backing (as stocked)\":\"Unbacked\",\"Finish/es (as stocked)\":\"Finish-Free\",\"IMO Certification Type\":\"IMO IMO Wheelmark\",\"Weight per Linear Yard\":\"38.5 oz\",\"Standards and Certifications\":\"California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant\"}}",
+            "compareDigest": "7ff16c88f10af03d46efa0602eff5ec51d31d49d9591ec88b800415c37484fe8"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480613939",
+            "namespace": "carnegie",
+            "key": "manufacturer_sku",
+            "type": "multi_line_text_field",
+            "value": "63009",
+            "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480646707",
+            "namespace": "carnegie",
+            "key": "source_url",
+            "type": "multi_line_text_field",
+            "value": "https://carnegiefabrics.com/grain-6300-upholstery",
+            "compareDigest": "cbab48d1fba9025292a4dbf5fe434c3ba2cef8cc7d5a1e8d1ed69f894d71fdff"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480679475",
+            "namespace": "carnegie",
+            "key": "type",
+            "type": "multi_line_text_field",
+            "value": "Suitable for Indoor and Outdoor use",
+            "compareDigest": "547b0217f3d53fc232f18ffbea6212187988e6a9f20df27602e4db8ea0e50f80"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480712243",
+            "namespace": "carnegie",
+            "key": "width",
+            "type": "multi_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480745011",
+            "namespace": "carnegie",
+            "key": "backing",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480777779",
+            "namespace": "carnegie",
+            "key": "free_of",
+            "type": "multi_line_text_field",
+            "value": "Antimicrobials Antimony Bisphenol A (BPA) Chlorine DMF Formaldehyde Halogenated fire retardants Heavy metals Ozone-depleting chemicals PFAS Plasticizers PVC Red List Chemicals Solvents Stain resistant finishes",
+            "compareDigest": "f80703361808567b9bbfe4bc3655ef489b4d8946b3bfabf7f6c69c15416b3bd6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480810547",
+            "namespace": "carnegie",
+            "key": "contents",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480843315",
+            "namespace": "carnegie",
+            "key": "warranty",
+            "type": "multi_line_text_field",
+            "value": "10 years",
+            "compareDigest": "b3d1454dd2b1c37da3a700bbf8d4ddcfdbd7ced5c073ca0e20301b2a3efd9ba1"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480876083",
+            "namespace": "carnegie",
+            "key": "durability",
+            "type": "multi_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480908851",
+            "namespace": "carnegie",
+            "key": "hydrolysis",
+            "type": "multi_line_text_field",
+            "value": "ISO 1419 (Tropical Test Method C) 15 weeks",
+            "compareDigest": "9ab88771e4dfade048229b7930178e9a2b94557bc70fbdd693a9cd6cad6b8750"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480941619",
+            "namespace": "carnegie",
+            "key": "flammability",
+            "type": "multi_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457480974387",
+            "namespace": "carnegie",
+            "key": "cleaning_code",
+            "type": "multi_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481007155",
+            "namespace": "carnegie",
+            "key": "lightfastness",
+            "type": "multi_line_text_field",
+            "value": "1,000 hours lightfastness",
+            "compareDigest": "0a2922fed841a7c64775adf97c97971c7b766052f3d88563f4984b195aad01bc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481039923",
+            "namespace": "carnegie",
+            "key": "manufactured_in",
+            "type": "multi_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481072691",
+            "namespace": "carnegie",
+            "key": "additional_details",
+            "type": "multi_line_text_field",
+            "value": "Extremely low VOCs Inherently Antimicrobial - In accordance with Test Method AATCC 147 Inherently flame resistant No topical finishes",
+            "compareDigest": "d709960449400347ca5538ad883fbe0777bebde4f1357f2ababa8ca69857160c"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481105459",
+            "namespace": "carnegie",
+            "key": "backing_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481138227",
+            "namespace": "carnegie",
+            "key": "finish_es_as_stocked",
+            "type": "multi_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481170995",
+            "namespace": "carnegie",
+            "key": "imo_certification_type",
+            "type": "multi_line_text_field",
+            "value": "IMO IMO Wheelmark",
+            "compareDigest": "868a09ce47f6ab84b1ba4386b9d9d127c276ba37699b378b234a9f153dc6cd47"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481203763",
+            "namespace": "carnegie",
+            "key": "weight_per_linear_yard",
+            "type": "multi_line_text_field",
+            "value": "38.5 oz",
+            "compareDigest": "f7087a9b2947204d3e0b9850fb7efdbdc4824a4a528b70abb8afa8d0a2473fe6"
+          },
+          {
+            "id": "gid://shopify/Metafield/37457481236531",
+            "namespace": "carnegie",
+            "key": "standards_and_certifications",
+            "type": "multi_line_text_field",
+            "value": "California Proposition 65 HHI (Healthier Hospitals Initiative) Kaiser Permanente LEED Meets California Indoor Air Quality Specification CA 01350 Mindful Materials RoHS & Reach compliant",
+            "compareDigest": "92b6bd3d7b6e06cc8ce4d01ab30a9a0944b372496f560c37dc3ffb7b2589336f"
+          },
+          {
+            "id": "gid://shopify/Metafield/37461433712691",
+            "namespace": "custom",
+            "key": "real_vendor",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615701555",
+            "namespace": "custom",
+            "key": "dw_sku",
+            "type": "single_line_text_field",
+            "value": "DWAG-379321",
+            "compareDigest": "4a3a49b185a3e0e78a6327fe3da197ae6b0b5c0e22e098389421bc7e0d588d36"
+          },
+          {
+            "id": "gid://shopify/Metafield/37546615734323",
+            "namespace": "custom",
+            "key": "product_type_spec",
+            "type": "single_line_text_field",
+            "value": "Upholstery",
+            "compareDigest": "e136c65a870667f8dac6fc44969d87a6920cee108152c172f92aa1d19aab4e4f"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7950174322739": {
+      "id": "gid://shopify/Product/7950174322739",
+      "title": "Siltech Grain Fabric - Color 9 | Carnegie",
+      "handle": "siltech-grain-fabric-color-9",
+      "vendor": "Carnegie",
+      "status": "ACTIVE",
+      "tags": [
+        "#829590",
+        "Carnegie",
+        "display_variant",
+        "Fabric",
+        "New Arrival",
+        "Sage",
+        "Siltech Grain",
+        "split-batch:carnegie-v2",
+        "Trending Wallcovering Collection 2026"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Fabric",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44837135286323",
+            "sku": "DWAG-379321",
+            "title": "Upholstery",
+            "price": "135.75",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44837135319091",
+            "sku": "DWAG-379321-sample",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/37732862263347",
+            "namespace": "custom",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862296115",
+            "namespace": "dwc",
+            "key": "width",
+            "type": "single_line_text_field",
+            "value": "55\" (140 cm)",
+            "compareDigest": "554abd51d8395078deba812a91d7fadfca490ab43e607e962ea033e15f4cbc7b"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862328883",
+            "namespace": "custom",
+            "key": "material",
+            "type": "multi_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862361651",
+            "namespace": "dwc",
+            "key": "contents",
+            "type": "single_line_text_field",
+            "value": "Face: 100% Silicone Back: 100% Polyester Double Knit",
+            "compareDigest": "655c1058199557056410c5ff43ef9f5a5f68930c8d84934aad22d25845fb52ad"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862394419",
+            "namespace": "dwc",
+            "key": "durability",
+            "type": "single_line_text_field",
+            "value": "No wear 200,000 double rubs",
+            "compareDigest": "dbf1a6010ae29f6c51ff17b1a58f43cf5c10c936ebf1be179aa730115c3d2a92"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862427187",
+            "namespace": "dwc",
+            "key": "cleaning_code",
+            "type": "single_line_text_field",
+            "value": "WS & BC - Water/Solvent & Bleach Cleanable",
+            "compareDigest": "d5ee405d4e4dbcf620bbd47808b5aaadb532430464d7d495397b03f0ccc3f36e"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862459955",
+            "namespace": "dwc",
+            "key": "finish",
+            "type": "single_line_text_field",
+            "value": "Finish-Free",
+            "compareDigest": "228900c499d063e1a4376e80971b81defba4fe4cf1d602d73344d57f14b05f05"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862492723",
+            "namespace": "custom",
+            "key": "fire_rating",
+            "type": "single_line_text_field",
+            "value": "BS 5852 Crib 5 California Technical Bulletin 117-2013 IMO 2010 FTP Part 8 for Upholstery as Stocked IMO Wheelmark",
+            "compareDigest": "c21235cfb859a8ed6699e496d5978c258dd062bea05733ed1cf6e3960d9c84d5"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862525491",
+            "namespace": "custom",
+            "key": "backing",
+            "type": "single_line_text_field",
+            "value": "Unbacked",
+            "compareDigest": "4ba99bd6a1875b7728a48a2e6a28a210eb73568b0384a7406eff7484ef1c099a"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862558259",
+            "namespace": "custom",
+            "key": "origin",
+            "type": "single_line_text_field",
+            "value": "China",
+            "compareDigest": "6165f2c18ac3b278076bacc5d25c60ec0b5ba8e3d9bf06c5c7b18851ff734eba"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862591027",
+            "namespace": "custom",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862623795",
+            "namespace": "dwc",
+            "key": "pattern_name",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain",
+            "compareDigest": "93b86cc02d880faef4257fec214b466b6bc7d4bae40deef437fded245c5e4acc"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862656563",
+            "namespace": "custom",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 9",
+            "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862689331",
+            "namespace": "dwc",
+            "key": "color",
+            "type": "single_line_text_field",
+            "value": "Color 9",
+            "compareDigest": "854d6f3cebde6f7743fc529bc3ff60d2c761e7b1372c2e52c779484bed9cb8e9"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862722099",
+            "namespace": "custom",
+            "key": "color_hex",
+            "type": "single_line_text_field",
+            "value": "#829590",
+            "compareDigest": "759d3d51121f2058ee1d5ffa0479060b17bc0f910f0d4e1776c9d407ff478442"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862754867",
+            "namespace": "custom",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862787635",
+            "namespace": "dwc",
+            "key": "brand",
+            "type": "single_line_text_field",
+            "value": "Carnegie",
+            "compareDigest": "61c3af9e4964f1070e47d7c8450e2f4fe57c350b1516d13b33f338d4186a63e7"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862820403",
+            "namespace": "custom",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63009",
+            "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862853171",
+            "namespace": "dwc",
+            "key": "manufacturer_sku",
+            "type": "single_line_text_field",
+            "value": "63009",
+            "compareDigest": "e9328650fa2f2891c7ffa922aaa05a32fbdf5fe063cc43066cc07cbeb88c91c0"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862885939",
+            "namespace": "dwc",
+            "key": "order_unit",
+            "type": "single_line_text_field",
+            "value": "Yard",
+            "compareDigest": "ed027f19046082c393cd9f99e3b2c975ab50c46893450e6706d359a7ad72d228"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862918707",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862951475",
+            "namespace": "dwc",
+            "key": "ai_generated_description",
+            "type": "multi_line_text_field",
+            "value": "A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.",
+            "compareDigest": "b043f22c40a7021193c54e8dda7f8b4f330b3ee3e1f8054db7103888e307dad3"
+          },
+          {
+            "id": "gid://shopify/Metafield/37732862984243",
+            "namespace": "global",
+            "key": "title_tag",
+            "type": "single_line_text_field",
+            "value": "Siltech Grain Fabric - Color 9 | Carnegie",
+            "compareDigest": "aa0434411815e8aabcc74a57662af2540deaf2e040c0ad3951f575d4eb62396e"
+          }
+        ]
+      }
+    },
+    "gid://shopify/Product/7896461410355": {
+      "id": "gid://shopify/Product/7896461410355",
+      "title": "Carnegie Siltech Grain",
+      "handle": "carnegie-siltech-grain",
+      "vendor": "Carnegie",
+      "status": "ARCHIVED",
+      "tags": [
+        "Black",
+        "Blush",
+        "Brown",
+        "Burgundy",
+        "Camel",
+        "Carnegie",
+        "carnegie-textile",
+        "Charcoal",
+        "Chocolate",
+        "Cream",
+        "display_variant",
+        "Fabric",
+        "Gold",
+        "Grey",
+        "Ivory",
+        "Khaki",
+        "Mustard",
+        "Oatmeal",
+        "Olive",
+        "Red",
+        "Rust",
+        "Sand",
+        "Upholstery"
+      ],
+      "descriptionHtml": "<p>A medium grained leather look in 100% silicone: a cleanable, durable, sustainable and PVC-free indoor/outdoor alternative to vinyl. Siltech Plus coated upholsteries are 2nd generation silicone technology using 3 layers of silicone for increased strength and an improved natural hand. Siltech Plus products deliver unmatched scratch and tear resistance along with incredible stain resistance and ease of cleaning all with no added finishes.</p>",
+      "productType": "Upholstery",
+      "variants": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/ProductVariant/44585627451443",
+            "sku": "DWAG-379296",
+            "title": "Color 1",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627484211",
+            "sku": "DWAG-379297",
+            "title": "Color 10",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627516979",
+            "sku": "DWAG-379298",
+            "title": "Color 11",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627549747",
+            "sku": "DWAG-379299",
+            "title": "Color 12",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627582515",
+            "sku": "DWAG-379300",
+            "title": "Color 13",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627615283",
+            "sku": "DWAG-379301",
+            "title": "Color 14",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627648051",
+            "sku": "DWAG-379302",
+            "title": "Color 15",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627680819",
+            "sku": "DWAG-379303",
+            "title": "Color 16",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627713587",
+            "sku": "DWAG-379304",
+            "title": "Color 17",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627746355",
+            "sku": "DWAG-379305",
+            "title": "Color 18",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627779123",
+            "sku": "DWAG-379306",
+            "title": "Color 19",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627811891",
+            "sku": "DWAG-379307",
+            "title": "Color 2",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627844659",
+            "sku": "DWAG-379308",
+            "title": "Color 20",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627877427",
+            "sku": "DWAG-379309",
+            "title": "Color 21",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627910195",
+            "sku": "DWAG-379310",
+            "title": "Color 22",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627942963",
+            "sku": "DWAG-379311",
+            "title": "Color 23",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585627975731",
+            "sku": "DWAG-379312",
+            "title": "Color 24",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628008499",
+            "sku": "DWAG-379313",
+            "title": "Color 25",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628041267",
+            "sku": "DWAG-379314",
+            "title": "Color 26",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628074035",
+            "sku": "DWAG-379315",
+            "title": "Color 3",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628106803",
+            "sku": "DWAG-379316",
+            "title": "Color 4",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628139571",
+            "sku": "DWAG-379317",
+            "title": "Color 5",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628172339",
+            "sku": "DWAG-379318",
+            "title": "Color 6",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628205107",
+            "sku": "DWAG-379319",
+            "title": "Color 7",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628237875",
+            "sku": "DWAG-379320",
+            "title": "Color 8",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628270643",
+            "sku": "DWAG-379321",
+            "title": "Color 9",
+            "price": "136.00",
+            "compareAtPrice": null
+          },
+          {
+            "id": "gid://shopify/ProductVariant/44585628303411",
+            "sku": "6300-upholstery-SAMPLE",
+            "title": "Memo Sample",
+            "price": "4.25",
+            "compareAtPrice": null
+          }
+        ]
+      },
+      "metafields": {
+        "pageInfo": {
+          "hasNextPage": false
+        },
+        "nodes": [
+          {
+            "id": "gid://shopify/Metafield/36672339214387",
+            "namespace": "custom",
+            "key": "product_class",
+            "type": "single_line_text_field",
+            "value": "Fabric",
+            "compareDigest": "3664c80aeb54925e014735b425e926091c2308da29bab8a9b732edf9254b3713"
+          },
+          {
+            "id": "gid://shopify/Metafield/36726273933363",
+            "namespace": "custom",
+            "key": "color_normalized_at",
+            "type": "date_time",
+            "value": "2026-07-28T15:44:25Z",
+            "compareDigest": "2d7d94c713f77b5b8d9e3bcd5bd8dfe4fe29fc0d9d151e3f21e508fef1ab4fea"
+          },
+          {
+            "id": "gid://shopify/Metafield/36726273966131",
+            "namespace": "custom",
+            "key": "color_palette",
+            "type": "json",
+            "value": "[{\"hex\":\"#F2EFEA\",\"pct\":100.0}]",
+            "compareDigest": "ea05156d5e01cd844d2d767a83814bebc17539dc20840f7a261354cfdb4da343"
+          }
+        ]
+      }
+    }
+  }
+}
diff --git a/execution-20260911/source-proof.json b/execution-20260911/source-proof.json
new file mode 100644
index 0000000..7fbeebc
--- /dev/null
+++ b/execution-20260911/source-proof.json
@@ -0,0 +1,23 @@
+[
+  {
+    "file": "/Users/macstudio3/Projects/carnegie-split/rollout.mjs",
+    "sha256": "910c6172a0d45691bd5c0f3441efe29838bb8099fda4c1483d28319d4f61aa9c",
+    "verdict": "PASS",
+    "checked": 5928,
+    "unique": 5928
+  },
+  {
+    "file": "/Users/macstudio3/Projects/carnegie-split/rollout2.mjs",
+    "sha256": "4c36365d2b0d29ffe131e97b5b4b72a2b4478c5d9de50ca741781a117918e9e1",
+    "verdict": "PASS",
+    "checked": 5928,
+    "unique": 5928
+  },
+  {
+    "file": "/Users/macstudio3/Projects/carnegie-split/build-siltech-grain-v2-archived.mjs",
+    "sha256": "0925e770f0cb46318fd5727e18533cacedcdd77f4b02bff64a4712928a945c77",
+    "verdict": "PASS",
+    "checked": 5928,
+    "unique": 5928
+  }
+]
diff --git a/execution-20260911/stale-digest-response.json b/execution-20260911/stale-digest-response.json
new file mode 100644
index 0000000..4b21846
--- /dev/null
+++ b/execution-20260911/stale-digest-response.json
@@ -0,0 +1,21 @@
+{
+  "metafields": [],
+  "userErrors": [
+    {
+      "field": [
+        "metafields",
+        "0"
+      ],
+      "message": "The resource has been updated since it was loaded. Try again with an updated `compareDigest` value.",
+      "code": "STALE_OBJECT"
+    },
+    {
+      "field": [
+        "metafields",
+        "1"
+      ],
+      "message": "The resource has been updated since it was loaded. Try again with an updated `compareDigest` value.",
+      "code": "STALE_OBJECT"
+    }
+  ]
+}
diff --git a/execution-20260911/stale-digest-test.json b/execution-20260911/stale-digest-test.json
new file mode 100644
index 0000000..88a0335
--- /dev/null
+++ b/execution-20260911/stale-digest-test.json
@@ -0,0 +1,25 @@
+{
+  "verdict": "PASS",
+  "response": {
+    "metafields": [],
+    "userErrors": [
+      {
+        "field": [
+          "metafields",
+          "0"
+        ],
+        "message": "The resource has been updated since it was loaded. Try again with an updated `compareDigest` value.",
+        "code": "STALE_OBJECT"
+      },
+      {
+        "field": [
+          "metafields",
+          "1"
+        ],
+        "message": "The resource has been updated since it was loaded. Try again with an updated `compareDigest` value.",
+        "code": "STALE_OBJECT"
+      }
+    ]
+  },
+  "product_unchanged": true
+}
diff --git a/verify_live.py b/verify_live.py
new file mode 100644
index 0000000..984474f
--- /dev/null
+++ b/verify_live.py
@@ -0,0 +1,65 @@
+#!/usr/bin/env python3
+"""Independent REST/SQL reader; imports no repair implementation."""
+import argparse, datetime, json, os, pathlib, subprocess, time, urllib.error, urllib.request
+from collect import token
+BASE=pathlib.Path(__file__).resolve().parent
+RUN=BASE/'execution-20260911'
+PLAN=json.loads((BASE/'verification/repair-plan.json').read_text())
+TOKEN=token()
+def get(path):
+    for attempt in range(5):
+        req=urllib.request.Request('https://designer-laboratory-sandbox.myshopify.com/admin/api/2026-07/'+path,headers={'X-Shopify-Access-Token':TOKEN})
+        try:
+            with urllib.request.urlopen(req,timeout=35) as r:
+                result=json.load(r)
+                assert 'rel="next"' not in r.headers.get('Link',''), 'Truncated REST response'
+            time.sleep(.55);return result
+        except urllib.error.HTTPError as e:
+            if e.code!=429:raise
+            time.sleep(max(1,float(e.headers.get('Retry-After','2'))))
+    raise RuntimeError('REST throttle exhausted')
+def check_product(p,baseline,target=None):
+    numeric=p['id'].split('/')[-1]
+    actual=get('products/'+numeric+'.json')['product']
+    metafields=get('products/'+numeric+'/metafields.json?limit=250')['metafields']
+    for key in ['title','handle','vendor','status']:
+        assert str(actual[key]).lower()==str(baseline[key]).lower(),(numeric,key)
+    assert actual['body_html']==baseline['descriptionHtml']
+    assert actual['product_type']==baseline['productType']
+    assert sorted(x.strip() for x in actual['tags'].split(',') if x.strip())==sorted(baseline['tags'])
+    av={str(v['id']):(v['sku'],v['title'],v['price'],v['compare_at_price']) for v in actual['variants']}
+    bv={v['id'].split('/')[-1]:(v['sku'],v['title'],v['price'],v['compareAtPrice']) for v in baseline['variants']['nodes']}
+    assert av==bv,(numeric,'variant or price drift')
+    live={(m['namespace'],m['key']):(str(m['id']),m['type'],m['value']) for m in metafields}
+    expected={(m['namespace'],m['key']):(m['id'].split('/')[-1],m['type'],m['value']) for m in baseline['metafields']['nodes']}
+    if target is not None:
+        for ns in ['custom','dwc']:
+            ident,typ,_=expected[(ns,'manufacturer_sku')]
+            expected[(ns,'manufacturer_sku')]=(ident,typ,target)
+    assert live==expected,(numeric,'metafield mismatch')
+    return dict(id=p['id'],status=actual['status'],metafields=metafields,variant_prices_unchanged=True,unrelated_fields_unchanged=True)
+def main():
+    ap=argparse.ArgumentParser();ap.add_argument('phase',choices=['canary','rollback-canary','all','monitor']);args=ap.parse_args()
+    before=json.loads((RUN/'preflight.json').read_text())
+    if (RUN/'products-baseline.json').exists():before['products']=json.loads((RUN/'products-baseline.json').read_text())['products']
+    canary=next((r,p) for r in PLAN['rows'] for p in r['products'] if p['status']=='ACTIVE')
+    chosen=[canary] if args.phase in ['canary','rollback-canary'] else [(r,p) for r in PLAN['rows'] for p in r['products']]
+    results=[]
+    for r,p in chosen:
+        results.append(check_product(p,before['products'][p['id']],r['before'] if args.phase=='rollback-canary' else r['after']))
+        print('REST verified '+p['id'],flush=True)
+    extra={r['excluded_grouped_product'] for r in PLAN['rows']}
+    for pid in extra:check_product({'id':pid},before['products'][pid])
+    ids=','.join(str(r['catalog_id']) for r in PLAN['rows'])
+    query=f"SELECT json_build_object('rows',(SELECT json_agg(t) FROM (SELECT * FROM carnegie_catalog WHERE id IN ({ids}) ORDER BY dw_sku) t),'count',(SELECT count(*) FROM carnegie_catalog),'distinct',(SELECT count(DISTINCT mfr_sku) FROM carnegie_catalog),'other_digest',(SELECT md5(string_agg(id::text||':'||dw_sku||':'||mfr_sku,'|' ORDER BY id)) FROM carnegie_catalog WHERE id NOT IN ({ids})));"
+    q=subprocess.run(['psql','-X','-q','-d','dw_unified','-At','-v','ON_ERROR_STOP=1','-c',query],capture_output=True,text=True,check=True,env=dict(os.environ,PGOPTIONS='-c default_transaction_read_only=on -c statement_timeout=15000'))
+    db=json.loads(q.stdout);expected_rows=before['database']['rows']
+    target={r['catalog_id']:r['after'] for r in PLAN['rows']}
+    for r in expected_rows:r['mfr_sku']=target[r['id']]
+    assert db['rows']==expected_rows, 'Unexpected local column change'
+    assert db['count']==db['distinct']==5928
+    assert db['other_digest']==before['database']['other_digest']
+    proof=dict(verdict='PASS',at=datetime.datetime.now(datetime.timezone.utc).isoformat(),phase=args.phase,reader='Independent REST GET plus read-only SQL; no repair implementation imported',products=len(results),metafields=len(results)*2,database_rows=26,unique_identities=5928,grouped_product_unchanged=True,all_unrelated_metafields_and_product_fields_unchanged=True,results=results)
+    (RUN/('independent-'+args.phase+'.json')).write_text(json.dumps(proof,indent=2)+'\n')
+    print(json.dumps({k:v for k,v in proof.items() if k!='results'},indent=2))
+if __name__=='__main__':main()

← 4eac062 auto-data-snapshot: 2026-09-11T09:31:49 (8 data files) — exe  ·  back to Carnegie Identity Audit  ·  Complete approved Carnegie identity repair with independent d07e6f8 →