Skip to main content
Version: 5.7.0

GetListCount

Method gets a count of entities based on the where clause.

Fields available for use in the 'where' clause are:

  • entityType
  • entityIndexedId
  • createdAt
  • updatedAt
  • ownerId
  • timeToLive

Along with all custom data (using data.). For more information on the query syntax see here.

ServiceOperation
globalEntityGET_LIST_COUNT

Method Parameters

ParameterDescription
whereA mongo style query string.

Usage

http://localhost:3000
// S2S call: to view example, switch to the Cloud Code or Raw tab.
JSON Response
{
"status": 200,
"data": {
"entityListCount": 5
}
}