fix: correct the resolver for the MediaDetails.file field to return the file name #3293
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 the
MediaDetails.file
field was returning a path to the file instead of the filename.The description of the field is:
The filename of the mediaItem
, however values such as2025/02/test-4.png
were being returned, which is unexpected behavior.Does this close any currently open issues?
closes: #2982
Any other comments?
Running a query like so:
Before
the file field returns a path:
After
the file field returns just the filename as the field description states it will:
Breaking Change?
This is not considered a breaking change as the actual behavior was not matching the documented intent of the field.
However, some users may have been relying on the output with the path, using the bug as a feature, so for those users this might come across as a breaking change.
Should a user need the field to resolve how it was previously, the following filter can be used, which will resolve the field as it was before this bugfix: