gremlin> g.V(1).store("a").out("created").store("b").in("created").store("c").out("livesIn").store("d").cap("a","b","c","d")==>[a:[v[1]], b:[v[3]], c:[v[1], v[4], v[6]], d:[]]
g.V().as('a').out().has('b').store('b').out().has('c').store('c').cap('a','b','c')
--
You received this message because you are subscribed to the Google Groups "Gremlin-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/9fb086bd-a930-492d-8683-9704398c8905%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
g.V().as("a").store("a")
.out("created").as("b").select("a", "b").store("ab").back("b")
.in("created").as("c").select("a", "b", "c").store("abc").back("c")
.out("livesIn").as("d").select("a", "b", "c", "d").store("abcd")
.cap("a", "ab", "abc", "abcd")
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/63a7062b-fe45-4cd8-9cda-b548212dc9d4%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/af225ec4-5ac7-4f00-bda8-737f62ce6208%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/CA%2Bf9seV32kD7WpagPdJ5Pi0zsJwVHJ-1sSjQPntSj5-pUNuVrQ%40mail.gmail.com.You received this message because you are subscribed to a topic in the Google Groups "Gremlin-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gremlin-users/EFusukzQfvY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gremlin-user...@googlegroups.com.