fix: pagination on connection fields #167
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this implement/fix? Explain your changes.
This fixes a bug where fields that return a connection were not able to be paginated properly.
Does this close any currently open issues?
related:
Any other comments?
Using the following ACF Field Group:
acf-export-2024-02-07.json.zip
I edited a post and added several related pages as the value of the "relationship" field:
Resulting in the following IDs being stored:
[17,105,106,15,16,18,19,20,21,22,23,24,7,25,26,27,28,29,30,31]
I then queried for the relationship field and tried to paginate:
BEFORE 🚫
Querying page 1 looks correct. I ask for the first 3 items and get them:
17, 105, 106
But using the
endCursor
as the value for the$after
cursor, I do not get the expected results.Expect:
15, 16, 18
Actual:
15
andhasNextPage: false
😱 😭 🤯 🤔AFTER ✅
Querying page 1 looks correct. I ask for the first 3 items and get them:
17, 105, 106
Using the
endCursor
as the value for the$after
cursor, I also get the expected results.Expect:
15, 16, 18
Actual:
15, 16, 18
And I can continue to paginate with the end cursor until the results run out and
hasNextPage
returns false as expected.i.e. here's the last page of results with records
30, 31
andhasNextPage: false