There is currently pagination on stories coming from the StoryService.
We want to be able to apply pagination to all IQueryables in the future.
Implement a way to apply pagination across all IQueryable lists regardless of the objects contained in that list.
Update StoryService to use this pagination
Update UserStoryService to use pagination
Update CommentService to use pagination
Some methods of the mentioned services will not require pagination, for example, getting the last 5 Stories/Comments to display on the user's profile page. When moderators or admins view the user's profile page, they should get the whole history (paginated).
There is currently pagination on stories coming from the StoryService.
We want to be able to apply pagination to all
IQueryable
s in the future.Some methods of the mentioned services will not require pagination, for example, getting the last 5 Stories/Comments to display on the user's profile page. When moderators or admins view the user's profile page, they should get the whole history (paginated).