If you want to get unchecked values then you can use name!=1 selector:
or
both is correct.
PHP Code:
$filteredCatItems = $catItems->getItems("single!=1");
or
PHP Code:
$filteredCatItems = $catItems->getItems("single=");
both is correct.