Mutation
delete_scan_freeze_window
Deletes an existing Scan Freeze Window and removes it from associated sites and folders
Input Fields
id():
ID!
The unique identifier of the scan freeze window to delete.
Return Fields
successful():
Boolean!
Whether the scan freeze window was successfully deleted.
Example
Query
mutation DeleteScanFreezeWindow($input: DeleteScanFreezeWindowInput!) {
delete_scan_freeze_window(input: $input) {
successful
}
}
Variables
{
"input": {
"id": "2"
}
}
Result
{
"data": {
"delete_scan_freeze_window": {
"successful": true
}
}
}