diff --git a/content/en/docs/refguide/modeling/domain-model/associations/query-over.md b/content/en/docs/refguide/modeling/domain-model/associations/query-over.md index 6298a3c9287..6d51228aa1d 100644 --- a/content/en/docs/refguide/modeling/domain-model/associations/query-over.md +++ b/content/en/docs/refguide/modeling/domain-model/associations/query-over.md @@ -104,9 +104,8 @@ Here is an example inheritance: {{< figure src="/attachments/refguide/modeling/domain-model/associations/query-over/limitation.png" class="no-border" >}} -In this example, a list of **Specializations** cannot be retrieved when using a standard by-association retrieve in a microflow if the input is the specialization. - -However, there is a workaround for this limitation: The list of Specializations can be retrieved with a Java action using the Java API. This Java action needs two parameters: the **Specialization** and a Boolean **Reverse** via this code snippet: +In this example, if a standard by-association retrieve in a microflow is used starting from a `Specialization` this will return the `Specialization` that the starting point `Specialization` points to. +The list of `Generalization`'s that points to `Specialization` can be retrieved with a Java action using the Java API: ```java public class RetrieveAsAssociatedWithB extends CustomJavaAction>