sequelize-search-builder
Advanced tools
Comparing version 0.12.0 to 0.13.1
{ | ||
"name": "sequelize-search-builder", | ||
"description": "Minimalist library for parsing search request to sequelize query", | ||
"version": "0.12.0", | ||
"version": "0.13.1", | ||
"author": "Sergey Mukhin (segemun) <sergeymukhin21@gmail.com>", | ||
@@ -10,3 +10,3 @@ "main": "index.js", | ||
"type": "git", | ||
"url": "https://github.com/segemun/sequelize-search-builder.git" | ||
"url": "https://github.com/SequelizeSearchBuilder/sequelize-search-builder.git" | ||
}, | ||
@@ -13,0 +13,0 @@ "keywords": [ |
@@ -0,1 +1,3 @@ | ||
🚨 This package has moved! It is now maintained under [@SequelizeSearchBuilder](https://github.com/SequelizeSearchBuilder). | ||
# Sequelize Search Builder | ||
@@ -123,3 +125,3 @@ ## About | ||
Git repository with DB tests: https://github.com/segemun/sequelize-search-builder-db-tests | ||
Git repository with DB tests: https://github.com/SequelizeSearchBuilder/sequelize-search-builder-db-tests | ||
@@ -141,2 +143,4 @@ ## Allowed query conditions | ||
| notLike | Op.notLike | Not like search (%value, value%, %value%) | ||
| is | Op.is | is (used to check for NULL and boolean values) | ||
| not | Op.not | not (used to check for NULL and boolean values) | ||
| iLike | Op.iLike | case insensitive LIKE (PG only) | ||
@@ -182,3 +186,3 @@ | notILike | Op.notILike | case insensitive NOT LIKE (PG only) | ||
## Front-End | ||
You can use [Sequelize Search Builder Client](http://github.com/segemun/sequelize-search-builder-client) module for the generation request http search string on the client side. | ||
You can use [Sequelize Search Builder Client](http://github.com/SequelizeSearchBuilder/sequelize-search-builder-client) module for the generation request http search string on the client side. | ||
@@ -185,0 +189,0 @@ ## Contribute |
15859
195