I am using the new Firestore query feature
firebase.firestore().collection("articles").where("tags", "array-contains", tag)
to query all the article with specific tags.
The query works fine but the result is not sorted.
I understand how database indexes work and use them with other string fields before but not yet with array type.
When I do the query
firebase.firestore().collection("articles").orderBy("publishTime", "desc").where("tags", "array-contains", tag)
It prompts a link to create index. But that link does not work.
Is this because the new feature is still under development or is there any special step for "array-contains" query type?
