QueryResultsRepr

Top  Previous  Next

Description

Represents a page of results in a paged query results set.

 

XML Representation

<?xml version="1.0"?>

<QueryResults 

 Count="%integer%" 

 Start="%integer%" 

 Length="%integer%" 

 NextBatch="%next page uri%" 

 PrevBatch="%previous page uri%">

  <Rows>

    <Row />*

  </Rows>

</QueryResults>

 

JSON Representation

 

"Count":%integer%, 

"Start":%integer%, 

"Length":%integer%, 

"Rows": array of Object,

"NextBatch":"%next page uri%", 

"PrevBatch":"%previous page uri%"

 

 

Notes

The Count attribute/property indicates the total number of results found by the query (if known, otherwise the value is 0)
The Start attribute/property indicates the offset of this page of results in the full list of results returned by the query
The Length attribute/property indicates the number of rows contained on this page.
The content of the Rows element/property is dependent upon the query executed.

 

See Also