loopback-connector-mongodb
Advanced tools
Comparing version
@@ -432,2 +432,4 @@ /*! | ||
query[k] = {$not: new RegExp(cond)}; | ||
} else if (spec === 'neq') { | ||
query[k] = {$ne: cond}; | ||
} | ||
@@ -434,0 +436,0 @@ else { |
{ | ||
"name": "loopback-connector-mongodb", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"description": "LoopBack MongoDB Connector", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -706,2 +706,22 @@ // This test written in mocha+should.js | ||
it('should support neq for match', function (done) { | ||
Post.create({title: 'My Post', content: 'Hello'}, function (err, post) { | ||
Post.find({where: {title: {neq: 'XY'}}}, function (err, posts) { | ||
should.not.exist(err); | ||
posts.should.have.property('length', 1); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
it('should support neq for no match', function (done) { | ||
Post.create({title: 'My Post', content: 'Hello'}, function (err, post) { | ||
Post.find({where: {title: {neq: 'My Post'}}}, function (err, posts) { | ||
should.not.exist(err); | ||
posts.should.have.property('length', 0); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
// The where object should be parsed by the connector | ||
@@ -708,0 +728,0 @@ it('should support where for count', function (done) { |
79280
0.92%1667
1.21%