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 74c5453 commit 73537fbCopy full SHA for 73537fb
README.md
@@ -242,7 +242,7 @@ E.g. get all Simpsons aged 3 or older in ascending order:
242
DocumentCursor<MyObject> documentCursor = arangoDriver.executeDocumentQuery(
243
query, bindVars, driver.getDefaultAqlQueryOptions(), MyObject.class);
244
245
- while (DocumentEntity<MyObject> documentEntity : documentCursor.asList()) {
+ for (DocumentEntity<MyObject> documentEntity : documentCursor.asList()) {
246
MyObject obj = documentEntity.getEntity();
247
System.out.println(obj.getName());
248
}
0 commit comments