joinedload-fix-2

This commit is contained in:
Untone 2023-11-30 19:41:53 +03:00
parent e82ca2e385
commit dbab772e62

View File

@ -145,6 +145,7 @@ async def load_shouts_by(_, info, options):
joinedload(Shout.authors).joinedload(Author.id), joinedload(Shout.authors).joinedload(Author.id),
joinedload(Shout.topics), joinedload(Shout.topics),
) )
.select_from(Shout)
.where(Shout.deleted_at.is_(None)) .where(Shout.deleted_at.is_(None))
) )