Hey @ThinkingAbout_s ,
The customer object, specifically the amountSpent, doesn’t have the presentment price and currency as its only displayed in the store’s currency. You might be able to use the orders object and query with a specific customer ID and get some of the details you are looking for as a work around; example below:
{
orders(first: 10, query: “customer_id:6783024103744”) {
nodes {
id
presentmentCurrencyCode
netPaymentSet {
presentmentMoney {
amount
}
}
}
}
}
I’ll submit the feedback on including this information on the customer object for future consideration.
Hope that helps!