deleteMetricThresholds
Delete metric thresholds for an environment.
deleteMetricThresholds(
input: DeleteMetricThresholdsInput
): DeleteMetricThresholdsPayload
Example
- Query
- Variables
- Response
mutation ($input: DeleteMetricThresholdsInput) {
deleteMetricThresholds(input: $input) {
success
}
}
{
"input": {
"envId": 42,
"eventType": "eventType",
"metricName": "metricName"
}
}
{
"data": {
"deleteMetricThresholds": {
"success": true
}
}
}
Arguments
deleteMetricThresholds.input ● DeleteMetricThresholdsInput input common
The environment, metric, and event type to delete.
Type
DeleteMetricThresholdsPayload object common
The result of deleting metric thresholds.