I have this following use case.
base1
_id, name
base2
_id, name, base1_id
so basically… base2 is a linked relation, parent -> child
on base3
_id, base1_id, base2_id
so base2_id is a relation that brings all the linked (children) of base 1… I need to ...