diff --git a/resolvers/author.py b/resolvers/author.py index e8779a65..e38fd315 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -172,7 +172,7 @@ async def get_author(_, _info, slug="", user=None, 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}") authors = get_authors_from_query(q) if authors: return authors[0]