"192.168.0.1" <type> "[address]" .
"192.168.0.1" <mac> "A" .
"192.168.0.1" <desc> "host1" .
"192.168.0.2" <type> "[address]" .
"192.168.0.2" <desc> "host2" .
"192.168.0.3" <type> "[address]" .
"192.168.0.3" <mac> "B" .
"192.168.0.3" <desc> "host3" .
"192.168.0.4" <type> "[address]" .
"192.168.0.4" <mac> "C" .
"192.168.0.4" <desc> "host4" .
If I do `g.V("192.168.0.5")` is there a way to know is the query returned something or nothing ?
I am currently using 0.6.1 because 0.7.0 does not really work for me for some reason (weird crashes/errors) and I have yet to find a solution.
I tried g.V("xxxx").ForEach() but it throws an exception if the query returned nothing, if I just try to examine the result of g.V("xxxx") it always returns a js object which is not that helpful.
I really like this project but it is really hard to work with, lack of documentation, no real way to easily debug your queries, crashes :(