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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 43 LET: variable creation  More complex example (selecting users along with logins and group membership): FOR u IN users LET logins = ( FOR l IN logins_2012 FILTER u.id == l.uid ) LET groups = ( FOR g IN group_memberships FILTER u.id == g.uid ) RETURN { "user": u, "logins": logins, "groups": groups } for each user, all users logins are put into variable „logins“ for each user, all group memberships are put into variable „groups“ logins and groups are independent of each other