3 var accessTokenIds = db.oauthaccesstokens.find({ userId: null, expires: { $lt: new Date() }}, { _id: 1 }).limit(1000).map(function(f) { return f._id; });
5 if (!accessTokenIds.length) break;
6 var removedCount = db.oauthaccesstokens.remove({ _id: { $in: accessTokenIds } });
7 if (!removedCount.nRemoved) break;
8 print('Removed 1000 access tokens');