I'm new to Cosmos and I am trying to query a nested array. I found this blog on how to work with arrays but there isn't an example on a nested array.
Given this json document, how can I query the Tags array? I want to find all records that have a tag of "test-1" within its Fees array.
{
"id": "22142846",
"PartitionKey": 846,
"Fees": [
{
"Tags": [
"test-1"
]
},
{
"Tags": [
"test-2"
]
}
]
}
