I am trying to simply add an updated object to an object array the struggle comes because the array is nested in the below structure.
Parent Object
id;
subObject[];
Sub Object
id;
subSubObject[];
Sub Sub Object
name;
Parent Object > Sub Object > Sub Sub Object to be added to the array of the Sub Object.
Let me know if you need any more information.