Skip to content
Advertisement

SQLAlchemy how to group_by relation?

Here are the models:

I want to send to users reports with: which templates they are sent and how many mail pieces was sent for each template.

I wrote the code:

But this is slightly not what I wanted. I got result grouped by templates but need list grouped by users where each user will have templates. So in that way I can iterate through users list and send report to each user with summary.

Current result:

[<Template(id='123', name='Test', mail_pieces_count='123', user=<User(id=1212, first_name='Some name', last_name='Some lastname')>)>, <Template(id='456', name='Test2', mail_pieces_count='456', user=<User(id=1212, first_name='Some name', last_name='Some lastname')>)>]

Expected result:

[<User(id=1212, first_name='Some name', last_name='Some lastname, templates=[<Template(id='123', name='Test', mail_pieces_count='123')>, <Template(id='456', name='Test2', mail_pieces_count='456')>,])>]

In other words, now it can be represented like: Current:

Expected:

Advertisement

Answer

The reason of current output:

You build a query using Template class:

This is the main reason why you got Template instances instead of User. Below just an example how to get expected result.

Note! I just try to explain how it works. My answer isn’t related to optimization, performance etc.

JFYI. If we look at console you will find that alchemy will do 1 query per iteration:

You can add Template into query to avoid this, but in this case you will get the number of records equal to the number of templates (not users):

So summarize, you need to use a specific class if you need to get instances of the class as a result:

Hope this helps.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement