Hi. I’m using the GraphQL query to fetch refundLineItems. But I need help to get the ID from the response. Here is the query,
query { refund(id: "gid://shopify/Refund/xxxxxxx") { id refundLineItems(first: 100) { edges { node { id quantity restockType subtotalSet { presentmentMoney { amount currencyCode } shopMoney { amount currencyCode } } totalTaxSet { presentmentMoney { amount currencyCode } shopMoney { amount currencyCode } } lineItem { id } } } } } }