When my structure looks like this:
X: {
Y: "blabla"
}
So I use the function "bson_iter_find_descendant(&iter, "X.Y", &desc)" to recover my data. But how to retrieve the values of "X.Y", "X.Z"... when my structure looks like this:
X: [
{
Y: "blihblih"
},
{
Z: "bloublou"
}
]
Note that I use the latest version of MongoDB-C Driver ...
Thank you in advance!