-
-
Notifications
You must be signed in to change notification settings - Fork 91
Description
ArcadeDB Version: <ArcadeDB_0> ArcadeDB Server v21.12.1-SNAPSHOT (build 1ec7e2f/1640704152765/main)
JDK Version: openjdk 11.0.13 2021-10-19
OpenJDK Runtime Environment Temurin-11.0.13+8 (build 11.0.13+8)
OpenJDK 64-Bit Server VM Temurin-11.0.13+8 (build 11.0.13+8, mixed mode)
OS: MS Windows 10 Pro Version 21H1
Expected behavior
I followed chapter 4.2.1. Quick start with the demo database from the manual.
docker startup works fine
login is fine
when I click the action "Display the first 30 records of Brewery together with all the vertices that are directly connected"
I expect the output as in the manual
Actual behavior
but when I click the action "Display the first 30 records of Brewery together with all the vertices that are directly connected"
it doesnt's show the command result (the graph) as in the manual but it shows a red toast massage saying "Internal error no value present"
Steps to reproduce
the SQL displayed is: select $this, bothE() from Brewery limit 30
The demo database is loaded (there are data: beers, breweries etc.)
e.g. the action "Display the first 30 records of Brewery" shows 30 circles (vertices) but no edges.
also, the context menu for the vertices doesn't work. When I e.g. select "Load incoming vertices" for a brewery I get the following error:
Error {"exception":"java.util.NoSuchElementException","detail":"No value present","error":"Internal error"}
e.g. I tried Gremlin: g.E().hasLabel('HasCategory').limit(30) and with this query I get a command result showing vertices and edges but not when I use the predefined actions.
Any support for what I'm doing wrong is apprechiated. Happy new year!