billysometimes / rethinkdb

dart driver for rethinkDB
MIT License
37 stars 19 forks source link

.ne() command not fully functional #33

Closed fschuetz04 closed 9 years ago

fschuetz04 commented 9 years ago

If I write something like

r.table('users').get(userId).ne(null).run(connection);

to test if a user exists (which works fine in Administration Console), a RqlError is thrown, while testing for things like Strings is working fine. Is this intended?

billysometimes commented 9 years ago

Null values were being unintentionally discarded. This is fixed now, thanks !