get_author_by_user_id-fix
Some checks failed
Deploy to core / deploy (push) Failing after 6s

This commit is contained in:
Untone 2024-02-21 13:16:39 +03:00
parent ba436de055
commit fb48bee8df

View File

@ -206,7 +206,7 @@ async def get_author_by_user_id(user_id: str):
@query.field("get_author_id")
async def get_author_id(_, _info, user: str):
return get_author_by_user_id(user)
return await get_author_by_user_id(user)
@query.field("load_authors_by")