Hi, when I use list_inventory_items to query the API for Bacteria, it seems to ignore the page_num argument and only gives me the first page of results. When I made the request directly through the API at https://my.labguru.com/api-docs/index.html it worked as expected.
Inspection of the code for list_inventory_items here points to the list method of InventoryItem here and in turn to the find method of Response, here.
The page_num arg is passed as one of the kwargs to find, but it doesn't look like it's actually used there. kwargs is only passed to filter_none, which doesn't do anything with paging.
Hi, when I use list_inventory_items to query the API for Bacteria, it seems to ignore the page_num argument and only gives me the first page of results. When I made the request directly through the API at https://my.labguru.com/api-docs/index.html it worked as expected.
Inspection of the code for list_inventory_items here points to the
listmethod of InventoryItem here and in turn to thefindmethod of Response, here.The page_num arg is passed as one of the kwargs to
find, but it doesn't look like it's actually used there.kwargsis only passed tofilter_none, which doesn't do anything with paging.