diff --git a/packages/backend/src/core/SearchService.ts b/packages/backend/src/core/SearchService.ts index 2a241d2e3..b399ace0a 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') {