Open kitsunde opened 11 years ago
Assuming we do, this would also open up for the possibility of abstracting away things similar to the Django ORM like specifying which fields you want back, like:
user.request('/me/friends').only('birthday', 'name')
Which should be a separate ticket if we end up doing that
Currently when we make a request we get back a dict, so if we encounter the case where we have multiple pages of data to go over we would need to construct our next request in whatever method that was using request.
If we instead implement a ResultsQueryset that fired the next request as needed we could do:
Rather than having to do something like this right now: