Christophe opened DATAMONGO-1132 and commented
For example the current documentation shows:
IsNotNull, NotNull findByFirstnameNotNull() {"age" : {"$ne" : null}}
IsNull, Null findByFirstnameNull() {"age" : null}
And it should be:
IsNotNull, NotNull findByFirstnameNotNull() {"firstname" : {"$ne" : null}}
IsNull, Null findByFirstnameNull() {"firstname" : null}
Note 'age' -> 'firstname'
Reference URL: http://docs.spring.io/spring-data/data-mongo/docs/1.6.1.RELEASE/reference/html/
Referenced from: pull request #262
Backported to: 1.6.2 (Evans SR2)