DeleteLocationInput
InputAutogenerated input type of DeleteLocation
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteLocation } } }
Example
mutation DeleteLocation(
$organizationId: ID!
$projectId: ID!
$input: DeleteLocationInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteLocation(input: $input) {
errors
}
}
}
}