I'm analyzing heap dumps in a Portal App.
With the help of OQL I found the MemorySessionData
Object with its address.
Now I want to find all SerializableViewState
Objects, that are hold by Objects hold by this MemorySessionData
object.
In other words: My MemorySessionData
Object holds several objects, these hold objects again and so on... I want to find all SerializableViewState
Objects in this tree.
How would the OQL look like? :-/