Database Management
Fetch the Count of Documents with a Not-Null Field/Key in a Collection
Fetch the Count of Documents in a Collection. This is to fetch the number of Documents that have a specific Field/Key that is not null.
post/api/collections/data/fetch/count
Request body
Example request
{
"collection": "Users",
"key": "name"
}Response
Output from the Database Collection Fetch Process
Example response
{
"status": "success",
"processing_time": 888,
"processing_id": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processing_count": 6554,
"data": {
"databaseId": "1234567890",
"collection": "Users",
"elapsed_time": 800,
"data": 124
}
}