0
我想輕鬆查詢這樣的結果:境界-JS架構與嵌套對象
通過這樣的查詢[{
name: 'john_doe',
info: {
age: 24,
notes: 'custom text',
phoneNumbers: {
home: 112345678,
work: 1234567,
},
},
}, {...}, {...}...]
...:
contacts.filtered("info.age = 24 AND info.notes CONTAINS 'custom'");
我應該如何建立這樣的模式?文檔是有關數據類型和嵌套的屬性非常混亂:
- https://realm.io/docs/react-native/0.14.0/api/Realm.html#~PropertyType
- https://realm.io/docs/react-native/latest/#nested-objects
我並不需要單獨檢索該數據的任何部分 - 與所有嵌套對象一次只完成目標。