Future<bool> existOid(ObjectId? id) async { if (id == null) return false; var count = await collection.modernCount(selector: where.id(id)); return count.count > 0; }