{
  productVariant(id: "gid://shopify/ProductVariant/12216190009400") {
    title
    id
    product {
      title
    }
    inventoryItem {
      id
      inventoryLevels(first: 10) {
        edges {
          node {
            id
            available
            location {
              id
              name
              address {
                address1
                address2
                city
                province
                country
                phone

              }
            }
          }
        }
      }
    }
  }
}