We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09126fb commit 14543ddCopy full SHA for 14543dd
arango/cursor.py
@@ -110,8 +110,10 @@ def _update(self, data: Json) -> Json:
110
111
# New in 3.11
112
if "nextBatchId" in data:
113
- self._next_batch_id = data["nextBatchId"]
114
- result["next_batch_id"] = data["nextBatchId"]
+ # This is only available for server versions 3.11 and above.
+ # Currently, we are testing against 3.10.9
115
+ self._next_batch_id = data["nextBatchId"] # pragma: no cover
116
+ result["next_batch_id"] = data["nextBatchId"] # pragma: no cover
117
118
self._has_more = bool(data["hasMore"])
119
result["has_more"] = data["hasMore"]
0 commit comments