joinedload-fix-5
All checks were successful
deploy / deploy (push) Successful in 5s

This commit is contained in:
Untone 2023-11-30 20:08:56 +03:00
parent dbab772e62
commit c049f882f3

View File

@ -142,7 +142,7 @@ async def load_shouts_by(_, info, options):
q = (
select(Shout, Author)
.options(
joinedload(Shout.authors).joinedload(Author.id),
joinedload(Shout.authors),
joinedload(Shout.topics),
)
.select_from(Shout)