Traverse through all the edges of a vertex in Janusgraph #4122
Replies: 2 comments 3 replies
-
So, you are running a python remote client. The error message starts with: 'Could not call index'. So, does the following give a result:
|
Beta Was this translation helpful? Give feedback.
3 replies
-
I tried this in Java and it is working fine in Java, I have opened a separate discussion regarding this issue, #4126 Closing this one. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a large set of data stored in Janusgraph. I have a use case where I need to traverse all the incoming edges of a vertex, below is the gremlin query I am using
but I keep on getting this error,
What am I doing wrong here ? How am I supposed to read all the incoming edges of a vertex using Janusgraph for a large dataset (around 500k edges)
Also, if I use
iterate()
with my query, it does not raise any error but it returns false for traversal.hasNext() even when the data is present.I tried running the query,
and it returns the data, but when I use iterate() and do .hasNext(), it returns false ??
Beta Was this translation helpful? Give feedback.
All reactions