type Mutation {
  cleanup(run: Boolean!): CleanupResponse! @resolver
  cleanupUnregistred(run: Boolean!): CleanupUnregistredResponse! @resolver
}

type CleanupResponse {
  count: Int!
  hashes: [String!]!
}

type CleanupUnregistredResponse {
  count: Int!
  hashes: [String!]!
}