createdby-fix

This commit is contained in:
2023-11-30 11:27:06 +03:00
parent 685988c219
commit 1362eaa125
4 changed files with 7 additions and 4 deletions

View File

@@ -201,6 +201,7 @@ async def load_shouts_feed(_, info, options):
q = (
select(Shout)
.options(
joinedload(Shout.created_by, Author.id == Shout.created_by),
joinedload(Shout.authors),
joinedload(Shout.topics),
)