I have about 500 delivery profiles that I can’t update. Attempting to delete the location group gives me:
[{“message”:“Timeout”,“extensions”:{“code”:“TIMEOUT”}}]
Granted these location groups are pretty big, but there doesn’t seem to be any way of deleting them piecemeal. So I appear to be stuck with un-deletable profiles.
My mutation is simple:
{
"query": "mutation ($id: ID!, $profile: DeliveryProfileInput!) {\n deliveryProfileUpdate(id: $id, profile: $profile) {\n profile {\n id\n }\n userErrors {\n field\n message\n }\n }\n}\n",
"variables": {
"id": "gid://shopify/DeliveryProfile/78141128861",
"profile": {
"locationGroupsToDelete": [
"gid://shopify/DeliveryLocationGroup/79394046109"
]
}
}
}
How can I delete these and move forward?