I am building a cube based on a source class, which I will call, Family.Dad
In the class definition for Family.Dad, there is a relationship, offspring As Child [ Cardinality = children, Inverse = father]
In the class definition for Child, there is a relationship called father As Dad [ Cardinality = parent, Inverse = offspring]
In the actual data, a dad can have many children, but a child can only have 1 dad.
Using DeepSee, I am trying to analyze to answer questions such as how many dads have children called Joseph ( Ex dad.offspring.GetAt(x).Name) etc .
The only way I was able to do this