It would be good if when searching for 'Not = Null's that the module created queries such as :

$query->isNotNull('myfield');

as per the documentaion here :

https://www.drupal.org/node/310086

rather than :

$query->condition('myfield', 'NULL', 'NOT');

which is does at present and which doesn't seem to work.