Clicking the button should show the top 30 edges. This applies for the query equivalent as well (SELECT FROM EDGE LIMIT 30).
No results are displayed.
for (i in 0..250000) {
val vertex = database.newVertex("Tester")
vertex.set("id", i.toString())
database.async().createRecord(vertex) {}
}
for (i in 0..250000) {
val vertex = database.newVertex("Software")
vertex.set("id", i.toString())
database.async().createRecord(vertex) {}
}
database.async().waitCompletion()
for (i in 0..250000) {
database.async().newEdgeByKeys(
"Tester",
arrayOf("id"),
arrayOf(i),
"Software",
arrayOf("id"),
arrayOf(i),
false,
"testerOf",
false,
true,
null
)
}
database.async().waitCompletion()
print("done")
ArcadeDB Version: 22.1.3
JDK Version: Corretto 11
OS: Windows 10
Expected behavior
Clicking the button should show the top 30 edges. This applies for the query equivalent as well (SELECT FROM EDGE LIMIT 30).
Actual behavior
No results are displayed.
Steps to reproduce
Load code:
GUI Steps: