OData Content - Getting the First Row

Example

The following request returns the data of the first row of the Flows0 flow.

Request:

GET <slURL>/queries/6089913651317040730/data.svc/Flows0(0)

Response type: application/xml

<entry>
    <id>http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0(0)</id>
    <title type="text">Flows0</title>
    <updated>2013-10-15T16:52:16.181+02:00</updated>
    <category term="Flows.Flow0" scheme="http://schemas.microsoft.com/ado/2007/08/
        dataservices/scheme"></category>
    <link href="Flows0(0)" rel="edit" title="Flow0"></link>
    <content type="application/xml">
        <m:properties>
            <d:Id>0</d:Id>
            <d:City>Chicago</d:City>
            <d:Customer>Steve &amp; Rob</d:Customer>
        </m:properties>
    </content>
</entry>

Response type: application/json

{
    "d": [ 
       { 
	        "__metadata": { 
	           "uri": "http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0(0)", 
		          "type": "Flows._Flow0" 
	        },
         "Id": 0,
         "City": "Chicago",
         "Customer": "Steve &amp; Rob", 
       }
    ]
}