Open
Description
Description/Steps to reproduce
- Create a model with String properties
- Insert instances with one of the string properties unset. (NULL in DB)
- Run a query for model {where: {stringProp: {neq: "value"}}}
- NULL entries are not included
Expected result
Null entries are not equal to value so should be included
Additional information
I notice that the output sql from the connector is !=, whereas IS DISTINCT FROM would work for NULL values. As far as I can tell, there is no operator that will invoke IS DISTINCT FROM. If this won't be fixed/is considered not an issue, having this at least documented somewhere would be useful.