This packaged is used to parse general queries to your express routes. We are adding extra support for sql & mongoose. By using this package as middleware app.user(query())
you will be able to have all parsed parameters waiting for you at req.queryParameters
to do and search as you please. Currently we only have the core searches implemented currently in 0.1.0
var qp = require('express-query-parameters') //qp = query-parameters
app.use(qp.query(options))
// Or
var parseData = qp.parse(options)
https://meanstackjs.com/api/blog?name=green
Blog.find(req.queryParameters.filter || '') //Rest of query
https://meanstackjs.com/api/blog?sort=name
Blog.sort(req.queryParameters.sort || '') //Rest of query
https://meanstackjs.com/api/blog?name=green
Blog.limit(req.queryParameters.limit || '') //Rest of query
https://meanstackjs.com/api/blog?name=green
Blog.skip(req.queryParameters.skip || '') //Rest of query
https://meanstackjs.com/api/blog?name=green
Blog.select(req.queryParameters.select || '') //Rest of query
Only Supporting One Function
https://meanstackjs.com/api/blog?lean=true
Blog.lean(req.queryParameters.lean || '') //Rest of query
No Support Yet
The MIT License (MIT)
Copyright (c) 2014-2017 Green Pioneer
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.