not support in queries

This commit is contained in:
Zef Hemel
2023-12-21 18:21:00 +01:00
parent 1a86c5b326
commit 62d55e11ff
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -25,6 +25,9 @@ export function evalQueryExpression(
// Value types
case "null":
return null;
// TODO: Add this to the actualy query syntax
case "not":
return !evalQueryExpression(op1, obj, functionMap);
case "number":
case "string":
case "boolean":