Open
Description
Hello there,
I have a data structure as follows
obj1 = {
"Achildren": ["childobj1", "childobj2", "childobj3" ....],
"Bchildren": ["childobj4", "childobj5", "childobj6" ....],
}
Achildren = {
"childobj1": {
"attr1": "val1",
"attr2": "val2",
"innerChildren": ["inchild1', ''inchild2', ''inchild3' .....]
}
}
InnerChildren = {
inchild1: {...},
inchild2: {...}
}
Is there a way that I can make nested populates work when I initially load Obj1
?