-
-
Notifications
You must be signed in to change notification settings - Fork 882
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
fix: remove hydra:next when no items would be returned in the next cursor pagination page #6477
base: main
Are you sure you want to change the base?
fix: remove hydra:next when no items would be returned in the next cursor pagination page #6477
Conversation
…rsor pagination page
{ | ||
$objects = iterator_to_array($object); | ||
$firstObject = current($objects); | ||
$lastObject = end($objects); | ||
|
||
$data['hydra:view']['@id'] = IriHelper::createIri($parsed['parts'], $parsed['parameters'], urlGenerationStrategy: $urlGenerationStrategy); | ||
|
||
if (false !== $lastObject && \is_array($cursorPaginationAttribute)) { | ||
if (false !== $lastObject && \is_array($cursorPaginationAttribute) && $pageTotalItems >= $itemsPerPage) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when $pageTotalItems == $itemsPerPage
we want to show hydra:view? Can you test this? I thought that with a cursor we did not know the amount of total items (no count)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We did test it out, we have it live in our production environment. This isn't perfect because it still could return no results on the next page, however, it prevents an empty page from showing hydra:next.
The logic is that with cursor pagination if you no longer have results on a page, the next one won't either because you are doing a less less than or greater than some identifier. Because it's only a comparison like that if it doesn't return enough results we can be certain the next page will return none.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would you be able to add a test for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I haven't gotten around to adding a test here. It isn't forgotten though.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
It still needs to be resolved. I've not had time to add the proper tests to the PR unfortunately. |
When using cursor pagination,
hydra:next
is currently always set even when it wouldn't return any results.