Hi, anyone know how to get the “base price” for a specific market? I tried to query using “PriceList” object, but it shows the price with my dev store currency (which is USD), what I want to get is the price using the market currency( which is Euro). Here is a query that I tried
query {
priceList(id: "gid://shopify/PriceList/14050525243") {
prices(first: 1, query: "variant_id:34004908113979") {
nodes {
price {
amount
currencyCode
}
compareAtPrice{
amount
currencyCode
}
variant {
id
title
}
originType
}
}
currency
}
}
I want to get the Euro (Market currency) instead of USD (store currency)
Thank you in advance!
