@Ricardo Peres Welcome to Microsoft Q&A and thank you for your interest in Azure CosmosDB.
Here is an example of a document containing a string array of tags
{
"product" : "SampleProduct",
"tags" : ["tag1", "tag2"]
}
You should be able to query for documents using the below queries
SELECT * FROM c JOIN tags IN c.tags WHERE tags IN ("tag1")
SELECT * FROM c JOIN tags IN c.tags WHERE ARRAY_CONTAINS([tags], "tag1")
I don't completely understand what you mean by "Cosmos DB does not support string arrays".
Please let me know if my interpretation of your question is incorrect and we will help you accordingly.
----------
If an answer is helpful, please "Accept answer" or "Up-Vote" for the same which might be beneficial to other community members reading this thread.