YuanchengJiang commented on issue #2162:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2162#issuecomment-1467408327

   Hi @javeme,
   You need to specify the node id in 
   ```
   
hugegraph.traversal().V(700090435594354688).as('700090435594354688').V(700090435724378112).as('700090435724378112').addE('R').from('700090435594354688').to('700090435724378112');
   ```
   Your node may node be 700090435594354688. Node id is returned from 
`hugegraph.traversal().addV('A').property('id', 1).next();`
   
   Anyway, you can test them in most schema, they will not return 0 results 
because they are quite general queries (with variable path length and without 
labels).
   
   And for buggy queries, you may need to use 
`hugegraph.traversal().V().emit(...` in hugegraph.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to