OData Content - Getting Content After Offset

Example

The following request returns the content of the Flows0 flow starting with the third row.

GET /queries/6089913651317040730/data.svc/Flows0?$skip=2

Response type: application/xml

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"
    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" 
    xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
    xml:base="http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/">
    <id>http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0</id>
    <title type="text">Flows0</title>
    <updated>2013-10-15T16:52:17.946+02:00</updated>
    <author>
        <name></name>
    </author>
    <link href="Flows0" rel="self" title="Flows0"></link> 
    <entry> 
        <id>http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0(2)</id>
        <title type="text">Flows0</title>
        <updated>2013-10-15T16:52:17.947+02:00</updated>
        <category term="Flows.Flow0" scheme="http://schemas.microsoft.com/ado/2007/08/
            dataservices/scheme"></category>
        <link href="Flows0(2)" rel="edit" title="Flow0"></link>
        <content type="application/xml">
            <m:properties>
                <d:Id>2</d:Id>
                <d:City>Chicago</d:City>
                <d:Customer>See You</d:Customer>
            </m:properties>
        </content>
    </entry>
    <entry>
        <id>http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0(3)</id>
        <title type="text">Flows0</title>
        <updated>2013-10-15T16:52:17.947+02:00</updated>
        <category term="Flows.Flow0" scheme="http://schemas.microsoft.com/ado/2007/08/
            dataservices/scheme"></category>
        <link href="Flows0(3)" rel="edit" title="Flow0"></link>
        <content type="application/xml">
            <m:properties>
                <d:Id>3</d:Id>
                <d:City>Chicago</d:City>
                <d:Customer>Chicago Mall</d:Customer>
            </m:properties>
        </content>
    </entry>
    <entry>
        <id>http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flows0(4)</id>
        <title type="text">Flows0</title>
        <updated>2013-10-15T16:52:17.947+02:00</updated>
        <category term="Flows.Flow0" scheme="http://schemas.microsoft.com/ado/2007/08/
            dataservices/scheme"></category>
        <link href="Flows0(4)" rel="edit" title="Flow0"></link>
        <content type="application/xml">
            <m:properties>
                <d:Id>4</d:Id>
                <d:City>Chicago</d:City>
                <d:Customer>National Supply</d:Customer>
            </m:properties>
        </content>
    </entry>
    ...
</feed>