I have a firestore db that looks like this:
dummy_collection:{
id: {
data: {...},
metaData: {
date: "2020-06-15",
...
},
},
},
I want to make a query based on the date-field.
I tried with:
db.collection("dummy_collection").where("metaData/date", "==", "2020-06-15")
but received:
ValueError: Path metaData/date not consumed, residue: /date
Is a query like this possible with firestore?