Skip to content

Commit ecc67bf

Browse files
authored
Mention default REST limits
And link to OData query operators.
1 parent eba864c commit ecc67bf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/sp-add-ins/working-with-lists-and-list-items-with-rest.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,11 @@ http://site url/_api/web/lists/getbytitle('ListName')/Items?&$filter=LookupColum
189189

190190
### Retrieve all list items
191191

192-
The following example shows how to retrieve all of a list's items.
192+
The following example shows how to retrieve all of a list's items.
193193

194194
> [!NOTE]
195-
> The OData $skip query option does not work when querying list items. In may situations, you can use the [$skiptoken](http://msdn.microsoft.com/library/4dda9434-c2c5-4577-8e01-7bf9e822d90a.aspx) option instead.
195+
> * The OData $skip query option does not work when querying list items. In many situations, you can use the [$skiptoken](http://msdn.microsoft.com/library/4dda9434-c2c5-4577-8e01-7bf9e822d90a.aspx) option instead.
196+
> * By default, this will return the first 100 items. More information on controlling the # of items, paging, etc. see the documentation on [OData Query options](https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/use-odata-query-operations-in-sharepoint-rest-requests)
196197
197198
```
198199
url: http://site url/_api/web/lists/GetByTitle('Test')/items

0 commit comments

Comments
 (0)