From 6c9fd23e6754e9b104784cabfa6ad23335137efb Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 28 Mar 2024 14:13:18 +0300 Subject: [PATCH] =?UTF-8?q?get=5Fauthor-follows-deb=D0=B3=D0=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resolvers/author.py | 1 + 1 file changed, 1 insertion(+) diff --git a/resolvers/author.py b/resolvers/author.py index b217af87..fa6efa94 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -173,6 +173,7 @@ async def get_author_follows(_, _info, slug='', user=None, author_id=0): author_query = author_query.filter(Author.id == author_id) else: raise ValueError('One of slug, user, or author_id must be provided') + logger.debug(author_query) [author] = local_session().execute(author_query) logger.debug(author.dict()) if isinstance(author, Author):