-
-
Notifications
You must be signed in to change notification settings - Fork 98
Closed
Labels
invalidThis doesn't seem rightThis doesn't seem rightwontfixThis will not be worked onThis will not be worked on
Milestone
Description
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:
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")
GUI Steps:
- Go to database tab from side-menu (2nd option)
- Go to edges tab
- Select "testerOf"
- Click "Display the first 30 records of testerOf"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
invalidThis doesn't seem rightThis doesn't seem rightwontfixThis will not be worked onThis will not be worked on