Thanks

fyi:  the syntax for this using my .net client 

GremlinScript script = new GremlinScript();

script.Append("results = [];")
        .Append("a = ").gV(ID).Append(";")
        .Append("a").In(RelationshipType.Like).Filter("!it.getProperty('{0}')",
NodeProperty.Delete)
        .Append(" >> results;")
        
.Append("a").Out(RelationshipType.Friend).Filter("!it.getProperty('{0}')",
NodeProperty.Delete)
        .Append(" >> results;")
        .Append("results;");

IEnumerable<Node> AllNodes = Gremlin.Post<Node>(script);


--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/Gremlin-syntax-for-multiple-paths-in-one-call-tp3392311p3392423.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to