← back to Dw Sarah Rowland Searchfix

get-handle.mjs

4 lines

import { gql } from './lib.mjs';
const d=await gql(`{ products(first:3, query:"tag:'Sarah Rowland'"){ nodes{ handle title onlineStoreUrl } } }`);
d.products.nodes.forEach(p=>console.log(p.handle,'||',p.onlineStoreUrl||'(no url)'));