SelfReferenced Entity - Reversed Retrieve By Association

0
I have a recursive entity (with a self-reference), so an entity can have an object of the same entity as it's parent and can have objects of the same entity as children. When using Retrieve-By Association in a microflow, the parent is returned. When using Retrieve-From Database in a microflow, the children are returned. However in my case the children can have non-committed changes, so I cannot use retrieve from database, since this will return the objects without these changes. So I want to retrieve By Association. So my question is: In a microflow, how can I retrieve the children, by association? I know that when using Retrieve-From Database you can use reversed() to reverse the retrieve direction. Is there something similar when retrieving by association? Thanks!
asked
1 answers
1

For now I can only think of a self-reference-set from parent to children.

answered