Querying nested subtrees in Cosmos DB
0
Let's say I have a parent-child-grandchild-etc relationship in a Cosmos document, represented by the following JSON: "id": "someUniqueString", "peepsNkids": [ "Jane": [ "Joe": , "Jocelyn": [ "Jerry": , "Jan": [ "Tom": , "Dick": , "Harry": ], "Jim": ], "Mary": [ "Moe": , "Larry": , "Dorothy": [ "Eadie": , "Phil": , "Lucille": [ "Desi Jr": ] ] ] ] How can I query...