queryfilter
v0.0.4
Published
Create query filters, stringify them, humanize them
Downloads
3,175
Readme
QueryFilter
Create query filters, stringify them, humanize them
Install
NPM
- Use:
require('queryfilter')
- Install:
npm install --save queryfilter
Browserify
- Use:
require('queryfilter')
- Install:
npm install --save queryfilter
- CDN URL:
//wzrd.in/bundle/[email protected]
Ender
- Use:
require('queryfilter')
- Install:
ender add queryfilter
Usage
var QueryFilter = require('queryfilter');
var queryFilter = new QueryFilter();
// whether or not we should invert this query
// boolean
queryFilter.inverse = false;
// whether or not we should exactly match the value
// boolean
queryFilter.exact = false;
// the human readable name of the field
// null/string
queryFilter.name = null;
// the key used to identify the field
// required, string
queryFilter.key = "some key";
// the data type of the field
// null/string
queryFilter.type = null;
// the operator used to compare the field with the value
// null/"bt"/"gt"/"lt"
queryFilter.operator = null;
// the value used on the field
// required, any type
queryFilter.value = "some value";
// Transformations
console.log(queryFilter.toString());
console.log(queryFilter.fromString());
console.log(queryFilter.toHumanString());
History
Discover the change history by heading on over to the HISTORY.md
file.
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
- Benjamin Lupton [email protected] (https://github.com/balupton)
Sponsors
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed code to this project:
License
Licensed under the incredibly permissive MIT license
Copyright © 2014+ Jed Watson [email protected] (https://github.com/jedwatson)