...
If developers want to see the count of total records for they view, the count parameter can be used.
Code Block title Get Total Record Count http://{host}/rds/{collection}/{view}/select?count
Code Block { records: [...], info: { colOffset: 0, colCount: 67, moreCols: false, format: "MTNA", includeMetadata: false, limit: 20, offset: 0, count: 662, moreRows: true } }
Record limits can be adjusted using the limit paramter.
Code Block title Select 100 Records http://mhdo.mtna.us:8080{host}/rds/catalog/test/NES1948{collection}/{view}/select?limit=100
Records can be paginated using the offset parameter.
Code Block title Records 101-200 http://mhdo.mtna.us:8080{host}/rds/catalog/test/NES1948/{collection}/{view}/select?limit=100&offset=100
Code Block title Records 201-300 codehttp://mhdo.mtna.us:8080{host}/rds/catalog/test/NES1948{collection}/{view}/select?limit=100&offset=200
http://mhdo.mtna.us:8080/rds/catalog/test/NES1948/select?limit=100&offset=100title Records 201-300