Please activate JavaScript!
Please install Adobe Flash Player, click here for download

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 46 GROUP: grouping  Example: retrieve the number of users per city (aggregated): FOR u IN users GROUP "city": u.city, "g" : $ RETURN { "c": city, "numUsers": LENGTH(g) }  Produces the following result: [ { "c": "cgn", "numUsers": 3 }, { "c": "ffm", "numUsers": 2 }, { "c": "ddf", "numUsers": 1 } ]