When using Realm Studio, filtering by data columns on a collection works, however, filtering by a linked record does not seem to? I have tried both the syntax in the linked documentation as well as a variety of other attempts and guesses.
For example, my Schema has links to a "Component" object. I'd like to filter all the records that link to a specific Component. I have attempted the documented component.id == 123
as well as many variations such as component_id = 123
, Component == $0, 123
, componentId == [c] "123"
, and many more.
What am I doing wrong?