From 5d204e02549a680fc0ba14b36b1aea8524924ab2 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 11 Feb 2026 20:58:22 +0100 Subject: [PATCH] fix(backend): fix categories filter (#9209) --- backend/src/graphql/types/type/Post.gql | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/graphql/types/type/Post.gql b/backend/src/graphql/types/type/Post.gql index b30aaa938..919eb64a4 100644 --- a/backend/src/graphql/types/type/Post.gql +++ b/backend/src/graphql/types/type/Post.gql @@ -1,6 +1,7 @@ input _CategoryFilter { AND: [_CategoryFilter!] OR: [_CategoryFilter!] + id_in: [ID!] } input _PostFilter { AND: [_PostFilter!]