标签: realm realm-studio
使用Realm Studio时,可以按集合中的数据列进行过滤,但是按链接记录进行过滤似乎不可行?我已经尝试了链接文档中的语法以及各种其他尝试和猜测。
例如,我的架构具有指向“组件”对象的链接。我想过滤所有链接到特定组件的记录。我尝试了记录的component.id == 123以及许多变体,例如component_id = 123,Component == $0, 123,componentId == [c] "123"等。
component.id == 123
component_id = 123
Component == $0, 123
componentId == [c] "123"
我在做什么错了?