Hello Sesa,
You can traverse nested JSON objects using the dot (.) notation.
For example, let us say, below is the structure of your JSON object:
obj1:{ obj2:{ obj3:{key1:data1, key2:data2, key3:data3}}}
You want to view data1 from the object. In that case, you will use:
mongo.collectionName
.obj1.obj2.obj3.key1
If your data has array of objects, then you can use ‘flatten’ function.
Using DB functions: In the “More” options, you will find under data type – json and nested data.
In these, you will find the functions key-value, flatten, index, key-value-generation. These functions can be applied to the JSON object to achieve the necessary result.
Thank You,
Helical Insight.