Access the OData service |
GET |
/queries/{queryId}/data.svc/
|
Get the query metadata |
GET |
/queries/{queryId}/data.svc/$metadata
|
Get the query result content |
GET |
/queries/{queryId}/data.svc/{flowName}
|
Get the number of records |
GET |
/queries/{queryId}/data.svc/{flowName}/$count
|
Get the record at rowIndex |
GET |
/queries/{queryId}/data.svc/{flowName}({rowIndex})
|
Get the record content |
GET |
/queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName}
|
Get the raw content of a record |
GET |
/queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName}/$value
|
Get the content after offset |
GET |
/queries/{queryId}/data.svc/{flowName}?$skip={offset}
|
Get the n first rows |
GET |
/queries/{queryId}/data.svc/{flowName}?$top={limit}
|
Get the n first rows after offset |
GET |
/queries/{queryId}/data.svc/{flowName}?$skip={offset}&$top={limit}
|