row-fix
All checks were successful
Deploy on push / deploy (push) Successful in 1m16s

This commit is contained in:
Untone 2024-11-01 11:57:49 +03:00
parent f7c41532a5
commit 7f58bf48fe

View File

@ -129,8 +129,7 @@ def get_shouts_with_links(info, q, limit=20, offset=0, author_id=None):
# Создаем словарь для хранения данных публикаций # Создаем словарь для хранения данных публикаций
shouts_data = {} shouts_data = {}
for row in shouts_result: for row in shouts_result:
shout = row.Shout shout_dict = row.dict()
shout_dict = shout.dict()
shout_dict["authors"] = [] shout_dict["authors"] = []
shout_dict["topics"] = set() shout_dict["topics"] = set()
@ -155,7 +154,7 @@ def get_shouts_with_links(info, q, limit=20, offset=0, author_id=None):
} }
shout_dict["main_topic"] = main_topic shout_dict["main_topic"] = main_topic
shouts_data[shout.id] = shout_dict shouts_data[row.id] = shout_dict
# Обрабатываем данные authors и topics из дополнительного запроса # Обрабатываем данные authors и topics из дополнительного запроса
for row in authors_and_topics: for row in authors_and_topics: