Skip to content

ArcadeDb Studio - Display first 30 records of "edge" doesn't work #311

@Jurgen-Aquilina

Description

@Jurgen-Aquilina

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"

Metadata

Metadata

Assignees

Labels

invalidThis doesn't seem rightwontfixThis will not be worked on

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions