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
MyEdgeName is replaced with the field with name MyEdgeName, but since it doesn't exist, it's null. inE(null) means get all the incoming edges, so it's correct.
SELECT EXPAND( inE(MyEdgeName) ) FROM #62:4 limit -1
does not fail, but instead returns ALL of incoming edges
quoting the name, on the other hand produces the correct results
SELECT EXPAND( inE("MyEdgeName") ) FROM #62:4 limit -1
The text was updated successfully, but these errors were encountered: