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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 41 LET: variable creation  Example using two collections (users, friends): FOR u IN users LET friends = ( FOR f IN friends FILTER u.id == f.uid ) FILTER LENGTH(friends) > 5  Differences to previous one collection example:  replaced f IN u.friends with just f IN friends  added inner filter condition