From 567f41c0c36ae48390fd6fe4438d159018a8ba13 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 12 Mar 2024 16:50:14 +0300 Subject: [PATCH] cached-load-fix --- resolvers/author.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resolvers/author.py b/resolvers/author.py index 5e6b8c6d..0e0acad8 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -147,7 +147,7 @@ async def load_authors_by(_, _info, by, limit, offset): return authors - return await _load_authors_by(_, _info, by, limit, offset) + return await _load_authors_by(None, None, by, limit, offset)