Fixed missing chars

This commit is contained in:
astigsen 2018-02-27 14:33:11 -08:00
parent 76acf0ab60
commit 02ba8183e1
1 changed files with 2 additions and 2 deletions

View File

@ -103,8 +103,8 @@ Other objects can link to an object and you can query on that releationship usin
Example: Example:
```JS ```JS
// Find contacts with no incomming links // Find contacts with no incomming links
let lonely = realm.objects('Contact').filtered('@links.@count == 0); let lonely = realm.objects('Contact').filtered('@links.@count == 0');
// Find contacts where someone from SF has them as friends // Find contacts where someone from SF has them as friends
realm.objects('Contact').filtered('@links.Contact.friends.city == "SF"); realm.objects('Contact').filtered('@links.Contact.friends.city == "SF"');
``` ```