Skip to content

Commit c4cfa46

Browse files
author
Nico Gallinal
committed
prepare for publish
1 parent f7aa16c commit c4cfa46

7 files changed

+162
-25
lines changed

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# paranoid-sql
2+
3+
> Add conditions to verify rows are not soft deleted.
4+
5+
## Installation
6+
7+
$ npm i @rematter/paranoid-sql
8+
OR
9+
$ yarn add @rematter/paranoid-sql
10+
11+
## Usage
12+
13+
```js
14+
import { getParanoidSql } from '@rematter/paranoid-sql';
15+
16+
const paranoidSql = getParanoidSql('SELECT * FROM t WHERE status = ?')
17+
18+
paranoidSql // => 'SELECT * FROM `t` WHERE `status` = ? AND `t`.`deletedAt` IS NULL'
19+
```
20+
21+
## Built With
22+
23+
- [`node-sql-parser`](https://github.com/taozhi8833998/node-sql-parser) - Parse simple SQL statements into an abstract syntax tree (AST) with the visited tableList, columnList and convert it back to SQL.
24+
25+
## Authors/maintainers
26+
27+
- **Nico Gallinal** - [nicoabie](https://github.com/nicoabie)
28+
29+
## License
30+
31+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details

lib/getParanoidSql.js

+114-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/getParanoidSql.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)