You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement count command to return number of documents in a collection based on the filter condition.
Filter clause is extension on what is used for other commands like find, delete, update, etc.
The count command will use CQL statement as
select count(key) from collection where (based on filter).
Response of the count to be returned as
{
"status": {
"counted_documents": 2
}
}
The text was updated successfully, but these errors were encountered:
Implement count command to return number of documents in a collection based on the filter condition.
Filter clause is extension on what is used for other commands like find, delete, update, etc.
The count command will use CQL statement as
select count(key) from collection where (based on filter).
Response of the count to be returned as
{
"status": {
"counted_documents": 2
}
}
The text was updated successfully, but these errors were encountered: