probe.mjs
import {gql} from './lib.mjs';
const id='gid://shopify/Product/7863155064883';
const q=`query($id:ID!){product(id:$id){id status title
variants(first:10){nodes{id sku position price inventoryItem{tracked}}}
mfmin:metafield(namespace:"global",key:"v_prods_quantity_order_min"){id value type}
mfuom:metafield(namespace:"global",key:"unit_of_measure"){id value type}
mfwidth:metafield(namespace:"global",key:"width"){id value}
}}`;
const d=await gql(q,{id});
console.log(JSON.stringify(d.product,null,1));