Actions
Bug #1427
closedAPI: Paging is broken
Start date:
2020-12-02
Estimated time:
Found in version:
Description
When paging the total number of of hits decreases with increasing start number.
e.g. https://demo-dev.openatlas.eu/api/0.1/query/?items=place&limit=50&show=detailed returns 65 hits:
[ { entities: 65, entity_per_page: 50, index: [ { page: 1, start_id: 9408, }, { page: 2, start_id: 15386, }, ], total_pages: 2, } ],
when continueing to the next page the total number of hits decreases (to the number of entities left going forward I think)
[ { entities: 15, entity_per_page: 50, index: [ { page: 1, start_id: 9408, }, { page: 2, start_id: 15386, }, ], total_pages: 2, } ],
expected behaviour would be that the hits remain the same, regardless on wich page I currently am
Updated by Bernhard Koschiček-Krombholz about 4 years ago
- Status changed from New to Acknowledged
- Assignee set to Bernhard Koschiček-Krombholz
- Target version set to 6.0.0
Updated by Bernhard Koschiček-Krombholz about 4 years ago
- Status changed from Acknowledged to Closed
Bug is fixed. Count counted at wrong time. Thank you for reporting!
Updated by Alexander Watzinger almost 4 years ago
- Tracker changed from Feature to Bug
Updated by Alexander Watzinger almost 4 years ago
- Subject changed from Pageing is broken to API: Pageing is broken
Updated by Alexander Watzinger almost 4 years ago
- Target version changed from 6.0.0 to 5.7.0
Updated by Alexander Watzinger almost 4 years ago
- Subject changed from API: Pageing is broken to API: Paging is broken
- Description updated (diff)
Actions