Anchor to backupRegionUpdatebackup
backupRegionUpdate
mutation
Requires for queries and both
as well as
for mutations.
Update the backup region that is used when we have no better signal of what region a buyer is in.
Anchor to Arguments
Arguments
- Anchor to regionregion•
Optional input representing the region to be updated. If not provided, the existing regions remain unchanged.
Was this section helpful?
Anchor to BackupRegionUpdatePayload returnsBackupRegionUpdatePayload returns
- Anchor to backupRegionbackup•
Region Returns the updated backup region.
- Anchor to userErrorsuser•
Errors [MarketUser non-nullError!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation backupRegionUpdate($region: BackupRegionUpdateInput) {
backupRegionUpdate(region: $region) {
backupRegion {
# MarketRegion fields
}
userErrors {
field
message
}
}
}
Input
{
"region": {
"countryCode": ""
}
}
{
"region": {
"countryCode": ""
}
}
input BackupRegionUpdateInput {
countryCode: CountryCode!
}