Problem/Motivation
The Views boolean field filter currently filters out everything that lacks a field value for the field being filtered.
This is unexpected and does not follow the filter logic configured in the UI. For example, say I've added a new field to one or more of my content types, "Exclude", and my goal is to use this new field to filter certain content items out of my view (anything where Exclude is checked). It would seem I could achieve this by adding a filter of Exclude != TRUE to my view.
With that filter in place I would now expect to see all content where my new "Exclude" checkbox boolean field has not been checked (Exclude != TRUE). This includes old content where there is no value yet for the field, as well as content of types that do not have this "Exclude" field, because Empty/NULL != TRUE.
This does not work, as the filter seems to add an additional condition, behind the scenes, that the field must not be empty/NULL. So in reality we end up with this logic: Exclude != NULL && Exclude != TRUE. The consequence is that content with no value set for the field is also excluded.
In practice I find the mere presence of this filter, configured in any which way, will always exclude all content where there is no value in the field, due to it always adding an unexpected not empty condition into the mix.
I believe this is a bug.
Steps to reproduce
1. Add content of one or more content types.
2. Add a view that displays all of this content.
3. Add a new boolean field to onto some or all of this content. At this point no content as a value of TRUE in this new field.
4. In the view, add a new filter on this new boolean field configured Field != TRUE.
5. See that no content shows in the view.
Proposed resolution
Remove the unexpected, added Field != empty/NULL condition so that configured filtering logic (Field != TRUE) matches actual filtering logic (Field != TRUE).
Remaining tasks
MR + Review.
User interface changes
What you configure is what you actually get in the views boolean field value filter.
Introduced terminology
None.
API changes
None.
Data model changes
None.
Release notes snippet
Todo.