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

AvocadoDB Query Language - Jan Steemann

© 2012 triAGENS GmbH | 2012-04-04 16 Type comparisons  When comparing two values, the following algorithm is used  If the types of the compared values are not equal, the compare result is as follows: null < boolean < number < string < list < document  Examples: null < false 0 != null false < 0 null != false true < 0 false != "" true < [ 0 ] "" != [ ] true < [ ] null != [ ] 0 < [ ] [ ] < { }