Hey Team Shopify,
I am fetching one of my client store products in my platform via graghql API here is the Query
query {product(id: “Z2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE1NTA3MTQ2NjM3Njg2”) {idtitlehandle category {fullName}options {nameposition}createdAtdescriptiondescriptionHtmlhandleproductTypepublishedAtstatustagstotalInventoryproductCategory {productTaxonomyNode {fullName}}vendoronlineStoreUrlvariantsCount {count}media(first: 20) {edges {node {preview {image {url}}}}}variants(first: 250) {edges {node {idskutitledisplayNameinventoryQuantityinventoryPolicyavailableForSale
inventoryItem {
measurement {
weight {
unit
value
}
}
inventoryLevels(first: 20){
edges{
node{
id
location{
id
}
quantities(names: ["available"]){
quantity
}
}
}
}
}
barcode
selectedOptions {
value
}
image {
url
}
contextualPricing(context: { country: IE }) {
compareAtPrice {
amount
currencyCode
}
price {
amount
currencyCode
}
}
}
}
}
}
In the response i am Getting Price 135 EUR Here is how it looks like
[variants] => Array([edges] => Array([0] => Array([node] => Array([id] => gid://shopify/ProductVariant/56915645727094[sku] => 5055960707150[title] => 36[displayName] => Arabella Stiletto Wedding Heels - 36[inventoryQuantity] => 18[inventoryPolicy] => DENY[availableForSale] => 1[inventoryItem] => Array([measurement] => Array([weight] => Array([unit] => KILOGRAMS[value] => 0.5) )
\[inventoryLevels\] => Array
(
\[edges\] => Array
(
\[0\] => Array
(
\[node\] => Array
(
\[id\] => gid://shopify/InventoryLevel/125132964134?inventory_item_id=55352808931702
\[location\] => Array
(
\[id\] => gid://shopify/Location/88733188390
)
\[quantities\] => Array
(
\[0\] => Array
(
\[quantity\] => 18
)
)
)
)
)
)
)
\[barcode\] => 5055960707150
\[selectedOptions\] => Array
(
\[0\] => Array
(
\[value\] => 36
)
)
\[image\] =>
\[contextualPricing\] => Array
(
\[compareAtPrice\] =>
\[price\] => Array
(
\[amount\] => 135.0
\[currencyCode\] => EUR
)
)
)
)
But in the Store i am seeing this Price
The Client has Given me the Store access and for Ireland Market i find these settings
Please Let me Know Why do i see different Price in Store Front and Different in Grapgql Admin API IS there any way i can fetch exact price that store front is showing.

