While searching for a solution for finding all objects linking to another object (for the purpose of cascading deletes), I came across the linkingObjects method in the React Native SDK (React Native SDK - linkingObjects()).
Is there a similar method in the Flutter SDK? If not, what is the recommended way of finding all objects linking to another object in the Flutter SDK? Keeping track of all linked model types when working with multiple, complex, schemas seem very error prone and difficult to maintain. I am aware of embedded objects, but unfortunately that doesn’t work for my use-case.