Closed JianChuanting closed 7 years ago
Currently not possible. But pull request are always welcome, and you also become an official member of the project if you contribute 👍
It is possible with a custom function:
var qs = new MongoQS({
custom: {
myParam: function(query, input) {
query.myParam = input === 'null' ? null : input;
}
}
});
ok, thx!
How to parse key=null? Want to get null not 'null'.