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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 30 FILTER: results filtering  More than one FILTER condition allowed per query  The following queries are all equivalent  Optimizer's job is to figure out best positions for applying FILTERs FOR u IN users FILTER u.c == 1 FOR l IN locations FILTER l.d == 2 FILTER u.a == l.b FOR u IN users FOR l IN locations FILTER u.c == 1 && l.d == 2 && u.a == l.b FOR u IN users FOR l IN locations FILTER l.d == 1 && u.a == l.b FILTER u.c == 1 ====