There are some ways that you can achieve deleting multiples values from your Collection, using id as to check which documents will be deleted. The below code - based on the post from the Community here - demonstrates an example of deleting documents per id of the Managers
.
WriteBatch batch = db.batch();
for (String id : idsList) {
DocumentReference ref = db.collection("Managers").document(id);
batch.delete(ref);
}
batch.commit();
I would recommend you to check the above post and this other one below, for more information on how to achieve the deletion of multiple documents.
Besides that, there is the additional information on the official documentation Delete data from Cloud Firestore, in case you want to check further details.
Let me know if the information helped you!