Document count with Firebase

I’m trying to check how many documents are inside a Firebase collection. Later I could use this to only call as much data as there actually is. With the query builder, it’s pretty simple, but I don’t understand how they work in GDevelop.

Create a new query for your collection, and send out the query. The query results include a variable containing the count: Cloud Firestore Database - GDevelop documentation

Thank you, I managed to do what I wanted ^^