HomeRecipesAPI ReferenceChangelogDiscussions
Log In
Discussions

Discussions

Ask a Question
Back to All

Query Result Count

Since Corrigo Response Limit is 4000, for paging is it possible to get a total count of that intended query to be utilized in the paging later.

For example, is it possible to get a total count of the following query beforehand, so that it can be utilized in paging if need be to get all the details of the wo where StatusId ==1

{
  "QueryExpression":
  {
      "Criteria": {
        "Conditions": [
          {
            "PropertyName": "StatusId",
            "Operator": "Equal",
            "Values": ["1"]
          }
        ],
        "FilterOperator": "And"
      },
      "Distinct": true,
      "PropertySet": { "Properties" : ["*"]},
      "Count": 2,
      "FirstResultIndex": 0
  }
}