Hey,

> I can confirm that the gremlin query works in the Console but not in the REST 
> API.
> Console Working:
> gremlin> g.v(0).outE[[label:'HOSTS']].inV{ it['UniqueId'] == 11761 
> }.drop(0).take(100)._()
> ==> v[756]
> 
> I will log a bug issue on this: 
> https://github.com/neo4j/gremlin-plugin/issues/3


I notice you are using an old version of Gremlin. I believe you are using 1.1 
or less?

If you move to 1.2+, the faster representation of your query is:

        g.v(0).out('HOSTS').filter{it.getProperty('UniqueId') == 11761}....

Enjoy,
Marko.
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to