You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
insert into V set id =1, name ="A"insert into V set id =2, name ="B"
create edge E from (selectfrom V where id =1) to (selectfrom V where id =2)
SELECT $x, name FROM V
let $x = out("E")
The text was updated successfully, but these errors were encountered:
OrientDB Version: 3.0.1
Java Version: 1.8
OS: Linux
I want to use
Let
block in my query.Actual/Expected behavior
When I assign an edge to a variable in
LET
block and use it in projection, it returnsnull
. But it is expected to return a value.Result:
Steps to reproduce
The text was updated successfully, but these errors were encountered: