Skip to content

🔧 simplify `_parseQuery`

Sylvain Fargier requested to merge wip-null-fixes into wip-null
  • use null in nullOp rather than undefined (get will return default for keys that return undefined but not for null)
  • includes(keys(nullOp), key) + comp ?? 'Null' was handling prop: null style queries (adding some extra lookups), it's now handled with default (and matches get(compOp, key, '=') logic

Merge request reports