API Stability Preview

The deleteLostCollectors() GraphQL mutation may be used to delete lost collectors.

Syntax

Below is the syntax for the deleteLostCollectors() mutation field:

graphql
deleteLostCollectors(
      dryRun: boolean!, 
      days: integer!
   ): integer!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteLostCollectors( 
     dryRun: false,
     days: 1
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteLostCollectors": 2
  }
}