Let's say I have a dynamic schema in MongoDB and one of the BSONDocuments "other" can have different documents with values. For example:
-Other
---Page:25
---Title: WC
---Author: Dickens
+ some others (dynamic)
Another record woul only have one document:
-Other
---Author: None
I am exporting this data to a relational format and would like to export Page, Title, Author as different values in a field called 'Other' and 25, WC, Dickens as corresponding values in a field called 'Other Value'.
In other terms, I would like to loop through possible documents in 'Other' and assign names of these documents to a variable and values of these documents to another value. And 'Other' is not an array...
What is the best way to achieve this?
Thanks,
Pasha