auth-debug
All checks were successful
deploy / deploy (push) Successful in 1m33s

This commit is contained in:
2023-12-15 16:55:12 +03:00
parent db7aee730f
commit 50016c0ba7
2 changed files with 2 additions and 1 deletions

View File

@@ -177,7 +177,7 @@ async def get_author(_, _info, slug="", author_id=None):
elif author_id:
q = select(Author).where(Author.id == author_id)
q = add_author_stat_columns(q)
print(f"[resolvers.author] SQL: {q}")
# print(f"[resolvers.author] SQL: {q}")
authors = get_authors_from_query(q)
if authors:
return authors[0]