
It seems that there is a way to get the total number of documents in a collection as shown in picture, how can that be accesed?

On php SDK there is an attribute called total when getting a list.
Eg $documents = listdocuments(...); $total = $documents['total'];

That will not get all of them

https://appwrite.io/docs/models/documentList
it might help

its mentioning same thing

@D5 why it will not get all of them ?

And why is that ?

Because you'll be limit to 5k at most.

That value of Total documents
is pulled from the usages collection
Though it will be nice to access that data from the SDKs.
Recommended threads
- Why do we need this unnecessary verifica...
I just want to create my own project and write PROJECT_ID in it, but why should I do this meaningless verification, wasting of time? And also, the tutorial said...
- Custom Domain not working.
I'm accessing my console for a project after awhile. The custom domain is verified and added as a web app as well. Why am I not able to access my console throug...
- Upload file to Storage
this working File ff = File("path/vid.mp4"); await ff.writeAsBytes(bytes); // Upload file to Storage final fileUpload = await _storage....
