location_delete

Arguments

ArgumentTypeRequiredDefaultDescription
dataDeleteLocationInput!Yes

Return Type

DeleteLocationOutput

Mutation

mutation location_delete(
  $data: DeleteLocationInput!
) {
  location_delete(
    data: $data
  ) {
    request_id
    complexity
  }
}

Variables

{
  "data": {
    "location_id": "abc123"
  }
}

Response

{
  "data": {
    "location_delete": {
      "request_id": "abc123",
      "complexity": 987
    }
  }
}