6 ms·
It has a very similar look and feel to Gremlin (http://tinkerpop.apache.org http://tinkerpop.apache.org). (->> ($alice) (assoc $friends) (assoc $friends) (f
by okram 10y ago
It has a very similar look and feel to Gremlin (http://tinkerpop.apache.org http://tinkerpop.apache.org).
(->> ($alice) (assoc $friends) (assoc $friends) (filter (> age 20)) (count))
...in Gremlin is:
g.V(alice).out("friends").out("friends").has("age",gt(20)).count()