Django error when annotating with StringAgg plus another function

163 Views Asked by At

I'm trying to get a flat list of site names associated with each user. The results will be written to a CSV file:

email,sites
[email protected],site1|site2|site3
[email protected],site3

StringAgg works to flatten sites in an annotation. Both has_flag and is_admin work in an annotation. All of these fields work with created_date. But if I try to include sites with either has_flag or is_admin, it throws the error 'WhenNode' object has no attribute 'copy'.

Simplified code:

users = (
    account.get_users()
    .annotate(
        is_admin=ExpressionWrapper(Q(role=1), output_field=BooleanField()),
        has_flag=ExpressionWrapper(Q(thing__isnull=False), output_field=BooleanField(),
        created_date=Func(F("created_at"),Value("YYYY-MM-DD"),function="to_char", output_field=CharField()),
        sites=StringAgg('usersite__site__name', delimiter="|"),
    )
    .values_list(
        "email",
        "is_admin",
        "has_thing",
        "created_date",
        "sites",
    )
)

class UserSite():
    class Meta(object):
        unique_together = ("user", "site")

    user = models.ForeignKey(User, on_delete=models.CASCADE)
    site = models.ForeignKey(Site, on_delete=models.CASCADE)
0

There are 0 best solutions below