Open
Description
When building the validators, I initially used UUIDs in IndalekoRelationshipContains
and IndalekoRelationshipContainedBy
. However, it turned out that they should be used oppositely to function correctly. For instance, if X and Y represents the UUIDs for Contains
and ContainedBy
, respectively, we should use Y and X for Contains
and ContainedBy
.
So, either of these statements should be correct:
Object2
[Contains/ContainedBy]Object1
when we are building IndalekoRelation objects- The UUIDs are used oppositely.
Based on my observations of other ingesters, the first option is more likely.