This adds a whereNull() method to query class similar to Eloquent has which will match null values across all search drivers since a simple Search::where('field', null) will not work with search drivers with complex data type support such arrays.
I know we talked about this in person, but just so we don't forget we agreed we need this method to support at least more than one driver before we merge it in.
This adds a
whereNull()
method to query class similar to Eloquent has which will match null values across all search drivers since a simpleSearch::where('field', null)
will not work with search drivers with complex data type support such arrays.