From cb9cbc8f15eb8e7f94100c96b81bcc7c8d47bd93 Mon Sep 17 00:00:00 2001
From: Mar0xy <marie@kaifa.ch>
Date: Tue, 21 Nov 2023 22:23:55 +0100
Subject: [PATCH] chore: remove unused type

---
 packages/backend/src/core/SearchService.ts | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/packages/backend/src/core/SearchService.ts b/packages/backend/src/core/SearchService.ts
index 2a241d2e31..b399ace0ae 100644
--- a/packages/backend/src/core/SearchService.ts
+++ b/packages/backend/src/core/SearchService.ts
@@ -29,8 +29,7 @@ type Q =
 	{ op: 'is not null', k: K} |
 	{ op: 'and', qs: Q[] } |
 	{ op: 'or', qs: Q[] } |
-	{ op: 'not', q: Q } |
-	{ op: 'in', qs: Q[] };
+	{ op: 'not', q: Q };
 
 function compileValue(value: V): string {
 	if (typeof value === 'string') {