-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing pagination for search results #598
Comments
If you look at the network tab for a request, is a Here's the relevant method on the |
A Link header is included in the response. I am willing to fix the missing pagination, but unsure how to go about creating a PaginatedList which might contain multiple types of instances (User, Context). When I limit the search results to objects of type 'user' (as per description in API documentation), I am able to get a fully functional PaginatedList. Maybe there is an example of a PaginatedList list containing multiple object types elsewhere in the code I could use as an example for a fix? |
Yeah, this is a known issue with I think the closest you could get is to use the method from #498 where the This would also affect #175. |
Endpoint search recipients is paginated, but corresponding method returns Python list with just the first page of the result.
I expected it to return a PaginatedList, but maybe the lists item type isn't easy to implement (either user of context)?
The text was updated successfully, but these errors were encountered: