Skip to content
Snippets Groups Projects
Commit c339574a authored by Leonardo's avatar Leonardo
Browse files

feat: is empty added

parent fe8e4c80
No related branches found
No related tags found
No related merge requests found
Pipeline #138495 failed
......@@ -229,6 +229,8 @@ func extractLogicCypher(LogicQuery interface{}, cacheData queryCacheData) (inter
op = "="
case "like":
op = "=~"
case "isempty":
return fmt.Sprintf(`(%s IS NULL OR %s = "")`, left, left), whereLogic, nil
case "lower":
return fmt.Sprintf("toLower(%s)", left), whereLogic, nil
case "upper":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment