fix: image fields (and other connection fields) not properly resolving when queried asPreview
#189
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 Image fields (and other fields that return Connections) were not properly resolving when querying a page
asPreview: true
.In order to support preview resolution, all field names and keys are tracked and then during resolution filters are applied to ensure the meta is resolved properly for each field (either the published post or the preview post).
Fields that return Connection types were not properly being tracked in this registry, leading to the preview resolver filter not being applied for these fields, so they would return preview data from the published node instead of the preview node.
Does this close any currently open issues?
closes #187
Any other comments?
I published a page with the following image uploaded for the image fields:
http://uri-debugging.local/wp-content/uploads/2024/03/1920x1080.png
When I query the page with
asPreview: false
I see the image returned as expected:When I query the page as an authenticated user with
asPreview: true
, I see the published image value (expected, since I have not made any un-published changes yet):Now, if I go replace the image:
http://uri-debugging.local/wp-content/uploads/2024/03/1920x1080.png
http://uri-debugging.local/wp-content/uploads/2024/03/andrea-de-santis-kq3hRVDiYYY-unsplash-scaled.jpg
And query
asPreview: true
again:BEFORE
I still see the published image, not the preview image. 😭
AFTER
I see the image that was added to the preview but not yet published! 🥳