Mutation
delete_folder
Permanently removes a folder from the site tree in Burp Suite Enterprise Edition. Note that deleting a folder also deletes any subfolders and sites that it contains, along with their associated data.
Input Fields
id():
ID!
The unique identifier of the folder that you want to delete.
Return Fields
id():
ID
The unique identifier of the folder that was deleted.
Example
Query
mutation DeleteFolder($input: DeleteFolderInput!) {
delete_folder(input: $input) {
id
}
}
Variables
{
"input": {
"id": "38"
}
}