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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 35 RETURN: results projection  To return a hierchical result (e.g. data from multiple collections), the following query could be used: FOR u IN users FOR l IN locations RETURN { "user": u, "location" : l }  Would produce: [ { "user": { "name": "John", "age": 25 }, "location": { "x": 1, "y“: -1 } }, { "user": { "name": "Tina", "age": 29 }, "location": { "x": -2, "y": 3 } }, ... ]