Returns `True` if the cursor has documents remaining from the previous batch.
(self)
| 117 | return self |
| 118 | |
| 119 | def _has_next(self) -> bool: |
| 120 | """Returns `True` if the cursor has documents remaining from the |
| 121 | previous batch. |
| 122 | """ |
| 123 | return len(self._data) > 0 |
| 124 | |
| 125 | @property |
| 126 | def _post_batch_resume_token(self) -> Optional[Mapping[str, Any]]: |
no outgoing calls