I want to create an index on a nested field in a document in Azure Cosmos DB. E.g. if I have the following schema:
{
'id': 1,
'nested':
{
'mode': 'mode1',
'text': 'nice text'
}
}
I want to create an index on the field nested.mode. How can this be done?