Hello all,
I have created a custom entity that links to the contact entity. There can be an arbitrary number of records of the custom entity referencing one contact (N:1). I want to create a view that only shows those contacts where no records of the custom entity pointing to it exists. I have found a way to create a view that filters only the records that have at least one associated record:
<fetch>
<entity name="contact">
<link-entity name="new_customentity" from="new_contact" to="contactid" />
</entity>
</fetch>
Is there a way to invert this view or how do I solve this?
Thanks