Hubwayย has set a limit to fetch only the first 1000 records. We encourage you to use the top and skip functions of OData to paginate and retrieve records in blocks of 1000s. This is to ensure better performance.
Example:
Page 1: {Service link}/{Entity Name}?$top=1000&$skip=0
Page 2: {Service link}/{Entity Name}?$top=1000&$skip=1000