I'm consuming a service REST, and it currently has 5025 records, but when I use the service only 1,000 records appear. What I can do to consume absolutely all records?
this is an example of my code:
$http({
method: 'GET',
url: "www.exampleurl.com", //is a example, I can not post the real url.
timeout:5000
}).success(function(data){
console.log(data)
}).error(function(response,status,headers,config) {
console.log("problem")
});