rowCount property
The total number of rows in the query result.
rowCount
is independent of the number of rows returned in the response
and the limit
request parameter. For example if a query returns 175 rows
and includes limit
of 50 in the API request, the response will contain
rowCount
of 175 but only 50 rows.
Implementation
core.int? rowCount;