Hi,
I'm trying to figure out how to perform a query on a database (Appery DB) that will simply return the number of records that would be returned.
I don't want to perform the query and get the data (as it could be large) as I'm only interested in the number that would be returned.
The mongoDB documentation says:
db.collection.count(query, options)
But I don't know how to convert that into the correct server code lines?
thanks.