Anchor to marketCurrencySettingsUpdatemarket
marketCurrencySettingsUpdate
mutation
Requires for queries and both
as well as
for mutations.
Updates currency settings of a market.
Anchor to Arguments
Arguments
- Anchor to inputinput•
Properties to update for the market currency settings.
- Anchor to marketIdmarket•
Id ID!required The ID of the market definition to target.
Was this section helpful?
Anchor to MarketCurrencySettingsUpdatePayload returnsMarketCurrencySettingsUpdatePayload returns
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
- Anchor to marketmarket•MarketDeprecated
The market object.
Was this section helpful?
Mutation Reference
1mutation marketCurrencySettingsUpdate($input: MarketCurrencySettingsUpdateInput!, $marketId: ID!) {2 marketCurrencySettingsUpdate(input: $input, marketId: $marketId) {3 market {4 # Market fields5 }6 userErrors {7 field8 message9 }10 }11}
Input
1{2 "input": {3 "baseCurrency": "",4 "baseCurrencyManualRate": "29.99",5 "localCurrencies": true,6 "roundingEnabled": true7 },8 "marketId": "gid://shopify/<objectName>/10079785100"9}
{
"input": {
"baseCurrency": "",
"baseCurrencyManualRate": "29.99",
"localCurrencies": true,
"roundingEnabled": true
},
"marketId": "gid://shopify/<objectName>/10079785100"
}
input MarketCurrencySettingsUpdateInput {
baseCurrency: CurrencyCode
baseCurrencyManualRate: Decimal
localCurrencies: Boolean
roundingEnabled: Boolean
}