We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, It seems that there is a bug when trying to get a fluid image object with an aspect ratio transformation.
query Query { product { image { fluid(transformations: "ar_0.74,c_fill") { ...CloudinaryAssetFluid } } } }
I have as an error:
Error: Cannot return null for non-nullable field CloudinaryAssetFluid.aspectRatio.
The text was updated successfully, but these errors were encountered:
Hi, could you use the latest version? Pushed an update to the types. Let me know if it works.
Sorry, something went wrong.
Using the latest version 2.2.3 didn't solve my problem, but using chained instead of transformations fixed my problem.
2.2.3
chained
transformations
query Query { product { image { fluid(chained: "ar_0.74,c_fill") { ...CloudinaryAssetFluid } } } }
I can't seem to reproduce this, did you try other transformations aside 'ar' in the transformations param?
No branches or pull requests
Hello,
It seems that there is a bug when trying to get a fluid image object with an aspect ratio transformation.
I have as an error:
The text was updated successfully, but these errors were encountered: