Changes between Version 1 and Version 2 of DeveloperGuidelines/EdenMobile/Services/emDB
- Timestamp:
- 11/23/17 22:38:02 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/EdenMobile/Services/emDB
v1 v2 61 61 Both {{{anyOf}}} and {{{allOf}}} can of course be nested indefinitely. 62 62 63 Negation has two alternatives as well: 64 {{{ 65 // Global not() function 66 var query = not(field.in([5, 6, 7])); 67 68 // Expression method 69 var query = field.in([5, 6, 7]).not(); 70 }}} 71 72 Obviously, the former provides for better readability - whilst the latter can be used if the local context overrides the global {{{not}}} for some reason. 63 73 === Sets === 64 74