I'm running the latest version of Mango with all modules up to date.
When I perform a GET request to the data-points end point I get back a JSON with two top level fields: "total" and "items". The "total" value is 334, however the number of items in the "items" array however is always only 100.
For example using my curl wrapper called mangocli:
$ mangocli data-points | head -n5
{
"total": 334,
"items": [
{
"id": 1,
$ mangocli data-points | jq '.items | length'
100
This is true for both the v1 and v2 APIs and when I use the swagger interface and curl to make the requests.
The user account that the JWT token is associated with has full admin privileges in Mango.
It seems like some sort of pagination but I can't find any mention of this behavior in the forum or in swagger. I also tried adding a query parameter for page but that resulted in a 500 error.