Query Firestore

Firestore provides powerful query functionality for specifying which documents you want to retrieve from a collection.

Still the firebase documentation about querying firestore by REST API lacks examples and the details are not obvious. Therefor I like to share this guidline with you.

  1. Use a http-request flow function

  2. Set the url in the formula to: "https://firestore.googleapis.com/v1/projects/YOUR_PROJECT/databases/(default)/documents/COLLECTION_WHERE_APPLICABLE/DOCUMENT_WHERE_APPLICABLE + “:runQuery”

  3. Set the HTTP method to POST

  4. if your security rules in firestore require authentication, set the header e.g.:
    image

  5. the main part for the query goes into the body:

{
“structuredQuery”: {
“from”: [{
“collectionId”: “COLLECTION_YOU_WANT_TO_ADDRESS”}],
“where”: {
“fieldFilter”: {
“field”: {
“fieldPath”: “KEY_YOU_ARE_INTERESTED_IN”
},
“op”: “EQUAL”,
“value”: {
“stringValue”: “VALUE_YOU_ARE_INTERESTED_IN”
}
}
},
“orderBy”: [{
“field”: {
“fieldPath”: “KEY_YOU_WANT_TO_ORDER_BY”
},
“direction”: “ASCENDING”
}],
“startAt”: {
“values”: [{
“stringValue”: “VALUE_KEY_YOU_ORDER_BY_TO_START_FROM”
}],
“before”:false
},
“limit”: “NUMBER_OF_DOCUMENTS_TO_BE_RETURNED”
}
}

You can visualize the above body e.g. with https://jsoneditoronline.org/ . With example content it looks like this:

Remarks regarding “orderBy”:

  • this is only required, if you need to download the data in a specific order or need to use “startAt” like below.
  • to make it work, there needs to be a related ‘composite index’ in firestore. You can either create the composite index in the firebase manually
    image
    or just click the link from the error-response to create it automatically.

Remarks regarding “startAt” and “limit”:

  • this is only required, if you need to use pagination to limit the number of documents returned.
  • I recommend to do tests with your app and determine, how much data it can handle. The responsiveness will depend on your logic and the components, you are connecting to this data e.g. in a “repeat with”-table. From my experience: when the data is connected to checkboxes and in “repeat with”-rows, the user experience turns ugly with more than 25 documents.
  • in order to define the document correctly where to resume on the next page (referred to as ‘cursor’): the values of the “KEY_YOU_WANT_TO_ORDER_BY” need to be unique. While it should be possible to define the cursor by its ID, the syntax for REST API isn’t available at the time of writing this guideline. (in the future there might be information about this on stackoverflow).
  1. in case that you need more complex queries, you can adapt the body according to the structuredQuery-documentation.

  2. check if the returned collection does not contain any documents. E.g. by
    image using the formula
    FIRST_ITEM( KEYS(FIRST_ITEM(outputs["HTTP request "].resBodyParsed))) == "readTime"

  3. use the output of the ‘HTTP request’ to set a data variable
    image using the formula
    MAP(outputs["HTTP request"].resBodyParsed, item.document)

Best practice for the use of this community guide:

  • experiment with your code on postman.com, to learn about the details and how to adapt it to your app.
  • only reply to this community guide to improve its content.
  • for any questions, please start a new thread in the forum.
9 Likes

Hi, thanks for sharing your work. Regarding authentication… where do we get the token and how to specify in the header? TIA

Hi! Thanks for this detailed guide! I’m interested in storing data from the response to the data variable. Can you please briefly elaborate on step8?? Do i create a data variable with the same schema as the firestore response? And how do i map those values?