I'm using Azure CosmosDB Data explorer (Azure Portal -> Azure Cosmos DB -> Data Explorer). There're only JSON query string {"foo": "bar"}
. How can I select only specific field or use aggregate
command there?
e.g., document structure:
{
"age": 30,
"city": "Oslo"
}
and I would to select only:
{
"city": "Oslo"
}