Hey,
> I figured I needed to do a projection of sorts, and the only thing I
> could get working was a transform(), as follows:
>
> m.sort{a,b -> a.value <=> b.value}._().transform(){a -> a.key}
m.sort{a,b -> a.value <=> b.value}.keySet()
...will return you the keys of the map in sorted order.
HTH,
Marko.
http://markorodriguez.com
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user

