-
-
Notifications
You must be signed in to change notification settings - Fork 86
Description
ArcadeDB Version: ArcadeDB Server v21.11.1-SNAPSHOT
JDK Version: OpenJDK Runtime Environment (build 11.0.13+8)
OS: Arch Linux
Expected behavior
Ability to get results from a cypher query run on the ArcadeDB Studio web tool:
- CREATE (i:User {name: 'RAMS'}) return i
Should result in the Node showing the user returned from the above example
Actual behavior
The query fails with an error message No value present
with the actual java dump being
<ArcadeDB_0> Error on command execution (PostCommandHandler) java.util.NoSuchElementException: No value present at java.base/java.util.Optional.get(Optional.java:148) at com.arcadedb.server.http.handler.PostCommandHandler.execute(PostCommandHandler.java:102) at com.arcadedb.server.http.handler.DatabaseAbstractHandler.execute(DatabaseAbstractHandler.java:82) at com.arcadedb.server.http.handler.AbstractHandler.handleRequest(AbstractHandler.java:112) at io.undertow.server.RoutingHandler.handleRequest(RoutingHandler.java:93) at io.undertow.server.handlers.PathHandler.handleRequest(PathHandler.java:104) at io.undertow.server.Connectors.executeRootHandler(Connectors.java:387) at io.undertow.server.protocol.http.HttpReadListener.handleEventWithNoRunningRequest(HttpReadListener.java:256) at io.undertow.server.protocol.http.HttpReadListener.handleEvent(HttpReadListener.java:136) at io.undertow.server.protocol.http.HttpOpenListener.handleEvent(HttpOpenListener.java:162) at io.undertow.server.protocol.http.HttpOpenListener.handleEvent(HttpOpenListener.java:100) at io.undertow.server.protocol.http.HttpOpenListener.handleEvent(HttpOpenListener.java:57) at org.xnio.ChannelListeners.invokeChannelListener(ChannelListeners.java:92) at org.xnio.ChannelListeners$10.handleEvent(ChannelListeners.java:291) at org.xnio.ChannelListeners$10.handleEvent(ChannelListeners.java:286) at org.xnio.ChannelListeners.invokeChannelListener(ChannelListeners.java:92) at org.xnio.nio.QueuedNioTcpServer2.acceptTask(QueuedNioTcpServer2.java:178) at org.xnio.nio.WorkerThread.safeRun(WorkerThread.java:612) at org.xnio.nio.WorkerThread.run(WorkerThread.java:479)
Steps to reproduce
Simply try to run the above command.
Please note the following that can be helpful in debugging:
- Running the SQL command select * from User will actually provide the correct result
- Running the above command through the curl request as shown below would work
curl -X POST "http://localhost:2480/api/v1/command/test" -d "{'language': 'cypher', 'command': 'CREATE (p:User {name:\'RAMS\'}) RETURN p'}" --user root:xxxxxxx - However running the same command but with the extra parameter "serializer":"graph" actually causes the same issue as the one mentioned above with response {"exception":"java.util.NoSuchElementException","detail":"No value present","error":"Internal error"}