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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 24 FILTER: results filtering  The FILTER keyword can be used to restrict the results to elements that match some definable condition  Example: retrieve all users that are active FOR u IN users FILTER u.active == true  Note: this is equivalent to the following SQL: SELECT * FROM users u WHERE u.active = true Access to the individual list elements in FOR list using variable name u