I'm adding keys to a graph using Gremlin. I have many key vertices all with a unique UUID.
Getting a key works like this:
g.V().hasLabel("key").property("uuid", "foobar").count()
or
g.V().hasLabel("key").property("uuid", "foobar")
Regardless what I fill in for foobar
it always returns an object and count is always =1.
How is this possible?