1
從MongoDB的光標限制的文檔如何重置MongoDB的聚集限制
A limit() value of 0 (i.e. .limit(0)) is equivalent to setting no limit.
但我不能找到辦法在mongodb aggregation limit docs重置查詢限制。
const listQuery = query.limit(20).exec(); // I need limit here
query.limit(0); // error here
const totalQuery = query.group(....).exec(); // No limit must be specified
我收到錯誤
MongoError: the limit must be positive
謝謝回覆!