..bump readme

This commit is contained in:
2022-08-09 13:17:31 +03:00
parent d20cd1e521
commit 158cb20717
4 changed files with 12 additions and 19 deletions

View File

@@ -57,9 +57,10 @@ async def get_shout_by_slug(_, info, slug):
options([
selectinload(Shout.topics),
selectinload(Shout.reactions),
selectinload(Shout.authors)
joinedload(Shout.authors, innerjoin=True),
selectinload(ShoutAuthor.caption)
]).\
join([ShoutAuthor.user, ShoutAuthor.caption], ShoutAuthor.shout == slug ).\
join(ShoutAuthor.caption.label('caption'), ShoutAuthor.shout == slug ).\
filter(Shout.slug == slug).first()
if not shout: