-
Notifications
You must be signed in to change notification settings - Fork 258
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
Support for Subquery #702
Comments
Hi, thanks for reporting. If you can, please try to dig this issue further and make PR with a fix. |
I've faced the same issue. |
Any solutions to this problem? any workarounds? @mick88 I'm facing the same issue |
No @celyes, I don't understand the code of this library well enough to contribute. I worked around the issue by not using a Subquery for now. |
@mick88 that's a choice that I cannot make on my current project. The project I'm working on relies heavily on advanced features of the ORM so I'll either have to find a workaround or just ditch the library in favor of another one. Anyway, thanks for your reply. I appreciate it! |
I have the followinmg subquery that should annotate a user with their team name:
However, this code fails for non-default locale because modeltranslation replaces
values_list('name', flat=True)
internally withvalues_list('name_en', 'name_es', flat=True)
This results in the following error when trying to annotate a queryset:
Defining
output_field
makes the error clearer:The text was updated successfully, but these errors were encountered: