File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ SelectQL.js is inspired by Structured Query Language (SQL) for accessing and man
9
9
## Usage
10
10
You may use Arrays or Objects to select and manipulate in well known SQL like syntax that uses builder patterns.
11
11
12
- --
13
- --
12
+ ` let cities = [
13
+ { name: 'Los Angeles', population: 3792621 },
14
+ { name: 'New York', population: 8175133 },
15
+ { name: 'Chicago', population: 2695598 },
16
+ { name: 'Houston', population: 2099451 },
17
+ { name: 'Philadelphia', population: 1526006 },
18
+ ] ;`
14
19
15
20
Original file line number Diff line number Diff line change 1
1
export { SelectQL } from './SelectQL' ;
2
- export { SelectStatement , ISelector } from "./Selector" ;
2
+ export { Operators , ISelector } from "./Selector" ;
3
3
You can’t perform that action at this time.
0 commit comments