Imagine any structure:
collection/document
In every document there is a value, like some kind of score. Then I order
my collection by this score: collection("collection").orderBy("score")
.
I can retrieve a specific document out of this collection("collection").orderBy("score").where(FieldPath.documentId(), "==", "document1234")
Now I wonder whether or not it is possible to get the position of my specific document in order.