-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28fcd8c
commit a1e1b70
Showing
3 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is what I meant by adding
pageSize
to the metadata. We can still remove this if we think it's not a good idea.The only issue I can see it that
pageSize
will not be accurate on the last page. It's possible to detect the last page (e.g. whennext
isnull
) and do something special like setpageSize
tonull
or don't includepageSize
in the metadata. I'm not sure which is the best approach without writing some application code. Thoughts?