As the title states, I am trying to connect my Firestore collection to my Zapier with a trigger. I am confused about how I should write the query though.
I understand I need to write an orderby query but I don't understand how I should write it. Here is my collection.
I added the Time Object to be used by OrderBy, but I am not sure how to use it.
CodePudding user response:
The query that you are looking for looks like this:
"orderBy": [{
"field": {
"fieldPath": "Time"
},
"direction": "DESCENDING"
}]