constshopify=libs.shopify.get();constquery=`{ order(id: "gid://shopify/Order/${orderID}") { id tags lineItems (first: 100) { edges { node { id product { id tags } } } } } }`;const { order } =awaitshopify.graphql(query);
// if you have added multiple shopify integration to the same app,// you can access them like this:constshopOne=libs.shopify.get('shopOne.myshopify.com');constshopTwo=libs.shopify.get('shopTwo.myshopify.com');...