cursor.isClosed()
mongo
Shell Method
This page documents the mongo
shell method, and doesnot refer to the MongoDB Node.js driver (or any other driver)method. For corresponding MongoDB driver API, refer to your specificMongoDB driver documentation instead.
Returns:Boolean.
cursor.isClosed()
returns true
if the server hasclosed the cursor.
A closed cursor may still have documents remaining in the lastreceived batch. Use cursor.isExhausted()
orcursor.hasNext()
to check if the cursor is fullyexhausted.