If you have a large lost with more items than the list view threshold you may want to use folders to scope the contents.
It’s possible to get just the contents of a folder using REST before applying a filter and cheat the threshold. The trick is to do a POST and set the CAML query for the view in the body. Additionally set the FolderServerRelativeUrl parameter to the server relative URL of the folder.
Using fetch:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | fetch( _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('Big Big List')/getItems" , { method: 'POST' , headers: { 'Accept' : 'application/json; odata=verbose' , 'content-type' : 'application/json; odata=verbose' , "X-RequestDigest" : jQuery( "#__REQUESTDIGEST" ).val() }, credentials: 'same-origin' , body: JSON.stringify({ query: { "__metadata" : { type: "SP.CamlQuery" }, ViewXml: '<View><Query><Where><Eq><FieldRef Name="BigField" LookupId="TRUE"/><Value Type="Lookup">' + id + '</Value></Eq></Where></Query></View>' , FolderServerRelativeUrl: "/MySite/BigBigList/SubFolder/2015" } }) }) .then(response => { return response.json(); }) .then(data => { if (data.d && data.d.results) { data.d.results.map(item => { console.log(item.Title); }); } }) . catch (err => { console.log(JSON.stringify(err)); }); |