I have a basic java app and I'm learning hot to send gremlin queries to a JanusGraph from that java app. I just played around with mkaing some nodes, but the .drop() method is not removing them all like I expected. What am I missing in this context?
Solution
This issue is addressed in lots of places but you probably just haven't come across them yet. You're missing a terminal step after the
drop()
drop()
. The terminal step actually executes the traversal...