|
@@ -960,10 +960,12 @@ router.route("/getGraphs").all(async (req, res, next) => {
|
|
|
do {
|
|
|
const response = await client.graphs.listEntities({
|
|
|
collectionId: folderid,
|
|
|
- offset: offset,
|
|
|
+ offset: offset2,
|
|
|
limit: 1000
|
|
|
});
|
|
|
- results2 = result2s.concat(response.results);
|
|
|
+ console.log(response.results);
|
|
|
+
|
|
|
+ results2 = results2.concat(response.results);
|
|
|
totalEntries2 = response.totalEntries;
|
|
|
offset2 += 1000;
|
|
|
} while (offset2 < totalEntries2);
|