@ptc-org/nestjs-query-typeorm 0.32.0 → 1.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +119 -119
- package/package.json +8 -20
- package/src/common/index.d.ts +1 -0
- package/src/common/index.js +5 -0
- package/src/common/index.js.map +1 -0
- package/src/common/randomString.d.ts +1 -0
- package/src/common/randomString.js +10 -0
- package/src/common/randomString.js.map +1 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +5 -2
- package/src/index.js.map +1 -0
- package/src/lib/query-typeorm.d.ts +1 -0
- package/src/lib/query-typeorm.js +8 -0
- package/src/lib/query-typeorm.js.map +1 -0
- package/src/module.d.ts +6 -0
- package/src/module.js +19 -0
- package/src/module.js.map +1 -0
- package/src/providers.d.ts +4 -0
- package/src/providers.js +18 -0
- package/src/providers.js.map +1 -0
- package/src/query/aggregate.builder.d.ts +32 -0
- package/src/query/aggregate.builder.js +116 -0
- package/src/query/aggregate.builder.js.map +1 -0
- package/src/query/filter-query.builder.d.ts +129 -0
- package/src/query/filter-query.builder.js +216 -0
- package/src/query/filter-query.builder.js.map +1 -0
- package/src/query/index.d.ts +5 -0
- package/src/query/index.js +9 -0
- package/src/query/index.js.map +1 -0
- package/src/query/relation-query.builder.d.ts +70 -0
- package/src/query/relation-query.builder.js +385 -0
- package/src/query/relation-query.builder.js.map +1 -0
- package/src/query/sql-comparison.builder.d.ts +42 -0
- package/src/query/sql-comparison.builder.js +155 -0
- package/src/query/sql-comparison.builder.js.map +1 -0
- package/src/query/where.builder.d.ts +60 -0
- package/src/query/where.builder.js +102 -0
- package/src/query/where.builder.js.map +1 -0
- package/src/services/index.d.ts +1 -0
- package/src/services/index.js +5 -0
- package/src/services/index.js.map +1 -0
- package/src/services/relation-query.service.d.ts +133 -0
- package/src/services/relation-query.service.js +265 -0
- package/src/services/relation-query.service.js.map +1 -0
- package/src/services/typeorm-query.service.d.ts +180 -0
- package/src/services/typeorm-query.service.js +310 -0
- package/src/services/typeorm-query.service.js.map +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,525 +3,525 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [0.30.0](https://github.com/
|
|
6
|
+
# [0.30.0](https://github.com/tripss/nestjs-query/compare/v0.29.0...v0.30.0) (2021-09-30)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* **query-typeorm:** import jest-extended into typeorm query service ([f539b29](https://github.com/
|
|
12
|
-
* **tests:** fix jest-extended typings and eslint problems ([6af8af1](https://github.com/
|
|
13
|
-
* **typeorm:** revert uneeded change to test entity ([86f7fd9](https://github.com/
|
|
11
|
+
* **query-typeorm:** import jest-extended into typeorm query service ([f539b29](https://github.com/tripss/nestjs-query/commit/f539b29fad60c070e8736f872d547fd498eb3c4f))
|
|
12
|
+
* **tests:** fix jest-extended typings and eslint problems ([6af8af1](https://github.com/tripss/nestjs-query/commit/6af8af13a33faaa1585561e7b426b125a6368b6b))
|
|
13
|
+
* **typeorm:** revert uneeded change to test entity ([86f7fd9](https://github.com/tripss/nestjs-query/commit/86f7fd9abb101eb40af2cf66009d50cb8c173eea))
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
### Features
|
|
17
17
|
|
|
18
|
-
* **query-typeorm:** allow deeply nested filters ([0bd6b76](https://github.com/
|
|
18
|
+
* **query-typeorm:** allow deeply nested filters ([0bd6b76](https://github.com/tripss/nestjs-query/commit/0bd6b76c4dbd876df7f9a991803843405d24fdb9))
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
# [0.29.0](https://github.com/
|
|
24
|
+
# [0.29.0](https://github.com/tripss/nestjs-query/compare/v0.28.1...v0.29.0) (2021-09-09)
|
|
25
25
|
|
|
26
|
-
**Note:** Version bump only for package @nestjs-query
|
|
26
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
## [0.28.1](https://github.com/
|
|
32
|
+
## [0.28.1](https://github.com/tripss/nestjs-query/compare/v0.28.0...v0.28.1) (2021-07-27)
|
|
33
33
|
|
|
34
|
-
**Note:** Version bump only for package @nestjs-query
|
|
34
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
# [0.28.0](https://github.com/
|
|
40
|
+
# [0.28.0](https://github.com/tripss/nestjs-query/compare/v0.27.0...v0.28.0) (2021-07-19)
|
|
41
41
|
|
|
42
|
-
**Note:** Version bump only for package @nestjs-query
|
|
42
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
# [0.27.0](https://github.com/
|
|
48
|
+
# [0.27.0](https://github.com/tripss/nestjs-query/compare/v0.26.0...v0.27.0) (2021-05-12)
|
|
49
49
|
|
|
50
|
-
**Note:** Version bump only for package @nestjs-query
|
|
50
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
# [0.26.0](https://github.com/
|
|
56
|
+
# [0.26.0](https://github.com/tripss/nestjs-query/compare/v0.25.1...v0.26.0) (2021-04-13)
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
### Features
|
|
60
60
|
|
|
61
|
-
* **typeorm:** Implement `setRelations` to set many relations ([d1109b7](https://github.com/
|
|
61
|
+
* **typeorm:** Implement `setRelations` to set many relations ([d1109b7](https://github.com/tripss/nestjs-query/commit/d1109b70f961cf59d7cbc8b8a85c401980a2b6c4))
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
## [0.25.1](https://github.com/
|
|
67
|
+
## [0.25.1](https://github.com/tripss/nestjs-query/compare/v0.25.0...v0.25.1) (2021-04-07)
|
|
68
68
|
|
|
69
|
-
**Note:** Version bump only for package @nestjs-query
|
|
69
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
|
|
75
|
-
# [0.25.0](https://github.com/
|
|
75
|
+
# [0.25.0](https://github.com/tripss/nestjs-query/compare/v0.24.5...v0.25.0) (2021-03-31)
|
|
76
76
|
|
|
77
77
|
|
|
78
78
|
### Bug Fixes
|
|
79
79
|
|
|
80
|
-
* Add consistent sorting for aggregate queries ([4ac7a14](https://github.com/
|
|
80
|
+
* Add consistent sorting for aggregate queries ([4ac7a14](https://github.com/tripss/nestjs-query/commit/4ac7a1485c7dcd83569951298606f487608806b1))
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
### Features
|
|
84
84
|
|
|
85
|
-
* **typeorm:** Update to support new aggregate with groupBy ([e2a4f30](https://github.com/
|
|
85
|
+
* **typeorm:** Update to support new aggregate with groupBy ([e2a4f30](https://github.com/tripss/nestjs-query/commit/e2a4f3066834ae7fddf0239ab647a0a9de667149))
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
## [0.24.4](https://github.com/
|
|
91
|
+
## [0.24.4](https://github.com/tripss/nestjs-query/compare/v0.24.3...v0.24.4) (2021-03-18)
|
|
92
92
|
|
|
93
|
-
**Note:** Version bump only for package @nestjs-query
|
|
93
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
|
|
97
97
|
|
|
98
98
|
|
|
99
|
-
## [0.24.1](https://github.com/
|
|
99
|
+
## [0.24.1](https://github.com/tripss/nestjs-query/compare/v0.24.0...v0.24.1) (2021-03-16)
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
### Bug Fixes
|
|
103
103
|
|
|
104
|
-
* **typeorm, #954:** Filtering on relations with pagination ([#977](https://github.com/
|
|
104
|
+
* **typeorm, #954:** Filtering on relations with pagination ([#977](https://github.com/tripss/nestjs-query/issues/977)) ([f5a6374](https://github.com/tripss/nestjs-query/commit/f5a6374f6e22470f63ef6257f7271c818ed09321)), closes [#954](https://github.com/tripss/nestjs-query/issues/954) [#954](https://github.com/tripss/nestjs-query/issues/954) [#954](https://github.com/tripss/nestjs-query/issues/954) [#954](https://github.com/tripss/nestjs-query/issues/954)
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
|
|
109
109
|
|
|
110
|
-
# [0.24.0](https://github.com/
|
|
110
|
+
# [0.24.0](https://github.com/tripss/nestjs-query/compare/v0.23.1...v0.24.0) (2021-03-15)
|
|
111
111
|
|
|
112
112
|
|
|
113
113
|
### Features
|
|
114
114
|
|
|
115
|
-
* **typegoose:** Add typegoose package ([#846](https://github.com/
|
|
115
|
+
* **typegoose:** Add typegoose package ([#846](https://github.com/tripss/nestjs-query/issues/846)) ([73cf5cd](https://github.com/tripss/nestjs-query/commit/73cf5cdbf11496ad3a3ce3f6bb69975510de26e2))
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
## [0.23.1](https://github.com/
|
|
121
|
+
## [0.23.1](https://github.com/tripss/nestjs-query/compare/v0.23.0...v0.23.1) (2021-02-26)
|
|
122
122
|
|
|
123
123
|
|
|
124
124
|
### Bug Fixes
|
|
125
125
|
|
|
126
|
-
* **typeorm,#895:** Wrap all OR and AND expressions in brackets ([838ab16](https://github.com/
|
|
126
|
+
* **typeorm,#895:** Wrap all OR and AND expressions in brackets ([838ab16](https://github.com/tripss/nestjs-query/commit/838ab16befe7a53f5fb11e84624c3b30811f61c6)), closes [#895](https://github.com/tripss/nestjs-query/issues/895)
|
|
127
127
|
|
|
128
128
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
# [0.23.0](https://github.com/
|
|
132
|
+
# [0.23.0](https://github.com/tripss/nestjs-query/compare/v0.22.0...v0.23.0) (2021-02-26)
|
|
133
133
|
|
|
134
|
-
**Note:** Version bump only for package @nestjs-query
|
|
134
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
# [0.22.0](https://github.com/
|
|
140
|
+
# [0.22.0](https://github.com/tripss/nestjs-query/compare/v0.21.2...v0.22.0) (2021-02-08)
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
### Bug Fixes
|
|
144
144
|
|
|
145
|
-
* **deps:** update dependency uuid to v8.3.2 ([289f1ed](https://github.com/
|
|
145
|
+
* **deps:** update dependency uuid to v8.3.2 ([289f1ed](https://github.com/tripss/nestjs-query/commit/289f1ed5610781792d3c1efa5492376095084ac0))
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
## [0.21.2](https://github.com/
|
|
151
|
+
## [0.21.2](https://github.com/tripss/nestjs-query/compare/v0.21.1...v0.21.2) (2020-10-23)
|
|
152
152
|
|
|
153
|
-
**Note:** Version bump only for package @nestjs-query
|
|
153
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
154
154
|
|
|
155
155
|
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
|
|
159
|
-
## [0.21.1](https://github.com/
|
|
159
|
+
## [0.21.1](https://github.com/tripss/nestjs-query/compare/v0.21.0...v0.21.1) (2020-10-18)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
### Bug Fixes
|
|
163
163
|
|
|
164
|
-
* **deps:** update dependency uuid to v8.3.1 ([a2b7555](https://github.com/
|
|
164
|
+
* **deps:** update dependency uuid to v8.3.1 ([a2b7555](https://github.com/tripss/nestjs-query/commit/a2b7555c1186e48999d44aa8af9b792f32b18b7e))
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
# [0.21.0](https://github.com/
|
|
170
|
+
# [0.21.0](https://github.com/tripss/nestjs-query/compare/v0.20.2...v0.21.0) (2020-10-16)
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
### Bug Fixes
|
|
174
174
|
|
|
175
|
-
* **eslint:** Fix eslint to recognize sub packages ([13fdd2b](https://github.com/
|
|
175
|
+
* **eslint:** Fix eslint to recognize sub packages ([13fdd2b](https://github.com/tripss/nestjs-query/commit/13fdd2b31289dbc80316cbdb5aa32edbe596bad4))
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
|
|
179
179
|
|
|
180
180
|
|
|
181
|
-
## [0.20.2](https://github.com/
|
|
181
|
+
## [0.20.2](https://github.com/tripss/nestjs-query/compare/v0.20.1...v0.20.2) (2020-10-01)
|
|
182
182
|
|
|
183
183
|
|
|
184
184
|
### Bug Fixes
|
|
185
185
|
|
|
186
|
-
* **filters:** Fix bug with incorect parameters in filter ([6ada4f4](https://github.com/
|
|
187
|
-
* **filters:** Fix bug with incorect parameters in filters ([9f4e93b](https://github.com/
|
|
188
|
-
* **typeorm:** fix unit tests after fix filters bug ([5f50419](https://github.com/
|
|
186
|
+
* **filters:** Fix bug with incorect parameters in filter ([6ada4f4](https://github.com/tripss/nestjs-query/commit/6ada4f4a12633d41c60de9540dfc28ed0985ca62))
|
|
187
|
+
* **filters:** Fix bug with incorect parameters in filters ([9f4e93b](https://github.com/tripss/nestjs-query/commit/9f4e93b7726d85cb4febe86d2caf941dc957463a))
|
|
188
|
+
* **typeorm:** fix unit tests after fix filters bug ([5f50419](https://github.com/tripss/nestjs-query/commit/5f5041906694ae7c4aa799f52049d0981b97ccfc))
|
|
189
189
|
|
|
190
190
|
|
|
191
191
|
|
|
192
192
|
|
|
193
193
|
|
|
194
|
-
## [0.20.1](https://github.com/
|
|
194
|
+
## [0.20.1](https://github.com/tripss/nestjs-query/compare/v0.20.0...v0.20.1) (2020-09-28)
|
|
195
195
|
|
|
196
|
-
**Note:** Version bump only for package @nestjs-query
|
|
196
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
197
197
|
|
|
198
198
|
|
|
199
199
|
|
|
200
200
|
|
|
201
201
|
|
|
202
|
-
# [0.20.0](https://github.com/
|
|
202
|
+
# [0.20.0](https://github.com/tripss/nestjs-query/compare/v0.19.4...v0.20.0) (2020-09-17)
|
|
203
203
|
|
|
204
|
-
**Note:** Version bump only for package @nestjs-query
|
|
204
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
|
|
209
209
|
|
|
210
|
-
## [0.19.4](https://github.com/
|
|
210
|
+
## [0.19.4](https://github.com/tripss/nestjs-query/compare/v0.19.3...v0.19.4) (2020-09-15)
|
|
211
211
|
|
|
212
|
-
**Note:** Version bump only for package @nestjs-query
|
|
212
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
213
213
|
|
|
214
214
|
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
## [0.19.3](https://github.com/
|
|
218
|
+
## [0.19.3](https://github.com/tripss/nestjs-query/compare/v0.19.2...v0.19.3) (2020-09-09)
|
|
219
219
|
|
|
220
|
-
**Note:** Version bump only for package @nestjs-query
|
|
220
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
221
221
|
|
|
222
222
|
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
|
|
226
|
-
## [0.19.2](https://github.com/
|
|
226
|
+
## [0.19.2](https://github.com/tripss/nestjs-query/compare/v0.19.1...v0.19.2) (2020-09-03)
|
|
227
227
|
|
|
228
|
-
**Note:** Version bump only for package @nestjs-query
|
|
228
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
229
229
|
|
|
230
230
|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
## [0.19.1](https://github.com/
|
|
234
|
+
## [0.19.1](https://github.com/tripss/nestjs-query/compare/v0.19.0...v0.19.1) (2020-09-02)
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
### Bug Fixes
|
|
238
238
|
|
|
239
|
-
* **typeorm,#493:** Fix uni-directional relation SQL ([7887b8c](https://github.com/
|
|
239
|
+
* **typeorm,#493:** Fix uni-directional relation SQL ([7887b8c](https://github.com/tripss/nestjs-query/commit/7887b8c94516194840df03139fecd0d5a0f38f65))
|
|
240
240
|
|
|
241
241
|
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
|
|
245
|
-
# [0.19.0](https://github.com/
|
|
245
|
+
# [0.19.0](https://github.com/tripss/nestjs-query/compare/v0.18.1...v0.19.0) (2020-09-01)
|
|
246
246
|
|
|
247
247
|
|
|
248
248
|
### Features
|
|
249
249
|
|
|
250
|
-
* **typeorm:** Add additional filter options to QueryService ([64241dc](https://github.com/
|
|
250
|
+
* **typeorm:** Add additional filter options to QueryService ([64241dc](https://github.com/tripss/nestjs-query/commit/64241dc9c4565c3bb2d4f168c837578bd706c48c))
|
|
251
251
|
|
|
252
252
|
|
|
253
253
|
|
|
254
254
|
|
|
255
255
|
|
|
256
|
-
## [0.18.1](https://github.com/
|
|
256
|
+
## [0.18.1](https://github.com/tripss/nestjs-query/compare/v0.18.0...v0.18.1) (2020-08-14)
|
|
257
257
|
|
|
258
|
-
**Note:** Version bump only for package @nestjs-query
|
|
258
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
259
259
|
|
|
260
260
|
|
|
261
261
|
|
|
262
262
|
|
|
263
263
|
|
|
264
|
-
# [0.18.0](https://github.com/
|
|
264
|
+
# [0.18.0](https://github.com/tripss/nestjs-query/compare/v0.17.10...v0.18.0) (2020-08-11)
|
|
265
265
|
|
|
266
266
|
|
|
267
267
|
### Bug Fixes
|
|
268
268
|
|
|
269
|
-
* **type:** Pin dev dependencies ([442db4c](https://github.com/
|
|
269
|
+
* **type:** Pin dev dependencies ([442db4c](https://github.com/tripss/nestjs-query/commit/442db4cd9b9d48d0c6a20209f0b44c4a314660ac))
|
|
270
270
|
|
|
271
271
|
|
|
272
272
|
### Features
|
|
273
273
|
|
|
274
|
-
* **typeorm:** Switch to use unioned queries for relations ([327c676](https://github.com/
|
|
274
|
+
* **typeorm:** Switch to use unioned queries for relations ([327c676](https://github.com/tripss/nestjs-query/commit/327c6760e3e1a7db6bb0f872928d0502345c925f))
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
|
|
278
278
|
|
|
279
279
|
|
|
280
|
-
## [0.17.10](https://github.com/
|
|
280
|
+
## [0.17.10](https://github.com/tripss/nestjs-query/compare/v0.17.9...v0.17.10) (2020-08-01)
|
|
281
281
|
|
|
282
|
-
**Note:** Version bump only for package @nestjs-query
|
|
282
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
283
283
|
|
|
284
284
|
|
|
285
285
|
|
|
286
286
|
|
|
287
287
|
|
|
288
|
-
## [0.17.8](https://github.com/
|
|
288
|
+
## [0.17.8](https://github.com/tripss/nestjs-query/compare/v0.17.7...v0.17.8) (2020-07-28)
|
|
289
289
|
|
|
290
290
|
|
|
291
291
|
### Features
|
|
292
292
|
|
|
293
|
-
* **graphql:** Allow specifying allowed comparisons on filterable fields ([ced2792](https://github.com/
|
|
293
|
+
* **graphql:** Allow specifying allowed comparisons on filterable fields ([ced2792](https://github.com/tripss/nestjs-query/commit/ced27920e5c2278c2a04c027a692e25b3306f6cb))
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
|
|
297
297
|
|
|
298
298
|
|
|
299
|
-
## [0.17.7](https://github.com/
|
|
299
|
+
## [0.17.7](https://github.com/tripss/nestjs-query/compare/v0.17.6...v0.17.7) (2020-07-27)
|
|
300
300
|
|
|
301
|
-
**Note:** Version bump only for package @nestjs-query
|
|
301
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
302
302
|
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
|
|
306
306
|
|
|
307
|
-
## [0.17.2](https://github.com/
|
|
307
|
+
## [0.17.2](https://github.com/tripss/nestjs-query/compare/v0.17.1...v0.17.2) (2020-07-17)
|
|
308
308
|
|
|
309
309
|
|
|
310
310
|
### Bug Fixes
|
|
311
311
|
|
|
312
|
-
* **typeorm:** Ensure record is entity instance when saving ([3cdbbaf](https://github.com/
|
|
312
|
+
* **typeorm:** Ensure record is entity instance when saving ([3cdbbaf](https://github.com/tripss/nestjs-query/commit/3cdbbaff11b18bcc5e6fd29fd182e2bd66b14f17)), closes [#380](https://github.com/tripss/nestjs-query/issues/380)
|
|
313
313
|
|
|
314
314
|
|
|
315
315
|
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
# [0.17.0](https://github.com/
|
|
318
|
+
# [0.17.0](https://github.com/tripss/nestjs-query/compare/v0.16.2...v0.17.0) (2020-07-16)
|
|
319
319
|
|
|
320
320
|
|
|
321
321
|
### Features
|
|
322
322
|
|
|
323
|
-
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/
|
|
324
|
-
* **aggregations,typeorm:** Add relation aggregation to typeorm ([2bf35a9](https://github.com/
|
|
325
|
-
* **aggretations:** Add aggregations support to typeorm ([7233c23](https://github.com/
|
|
323
|
+
* **aggregations:** Add aggregations to graphql ([af075d2](https://github.com/tripss/nestjs-query/commit/af075d2e93b6abbbfbe32afcc917350f803fadaa))
|
|
324
|
+
* **aggregations,typeorm:** Add relation aggregation to typeorm ([2bf35a9](https://github.com/tripss/nestjs-query/commit/2bf35a92ce80b1f3026fd87cb62cad17eb6eff03))
|
|
325
|
+
* **aggretations:** Add aggregations support to typeorm ([7233c23](https://github.com/tripss/nestjs-query/commit/7233c2397d0ac332e5209ab87ae62f5f555609d6))
|
|
326
326
|
|
|
327
327
|
|
|
328
328
|
|
|
329
329
|
|
|
330
330
|
|
|
331
|
-
## [0.16.2](https://github.com/
|
|
331
|
+
## [0.16.2](https://github.com/tripss/nestjs-query/compare/v0.16.1...v0.16.2) (2020-07-09)
|
|
332
332
|
|
|
333
|
-
**Note:** Version bump only for package @nestjs-query
|
|
333
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
|
|
337
337
|
|
|
338
338
|
|
|
339
|
-
## [0.16.1](https://github.com/
|
|
339
|
+
## [0.16.1](https://github.com/tripss/nestjs-query/compare/v0.16.0...v0.16.1) (2020-07-07)
|
|
340
340
|
|
|
341
341
|
|
|
342
342
|
### Bug Fixes
|
|
343
343
|
|
|
344
|
-
* **typeorm:** Fix import path in relation service [#363](https://github.com/
|
|
344
|
+
* **typeorm:** Fix import path in relation service [#363](https://github.com/tripss/nestjs-query/issues/363) ([0e6d484](https://github.com/tripss/nestjs-query/commit/0e6d484920960ed1966360a89af979230667b5f7))
|
|
345
345
|
|
|
346
346
|
|
|
347
347
|
|
|
348
348
|
|
|
349
349
|
|
|
350
|
-
# [0.16.0](https://github.com/
|
|
350
|
+
# [0.16.0](https://github.com/tripss/nestjs-query/compare/v0.15.1...v0.16.0) (2020-07-05)
|
|
351
351
|
|
|
352
352
|
|
|
353
353
|
### Features
|
|
354
354
|
|
|
355
|
-
* **typeorm:** Add support for filtering on relations ([aa8788c](https://github.com/
|
|
355
|
+
* **typeorm:** Add support for filtering on relations ([aa8788c](https://github.com/tripss/nestjs-query/commit/aa8788cbbc0c95465e1633b57ca48c91b160038a))
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
|
|
359
359
|
|
|
360
360
|
|
|
361
|
-
## [0.15.1](https://github.com/
|
|
361
|
+
## [0.15.1](https://github.com/tripss/nestjs-query/compare/v0.15.0...v0.15.1) (2020-06-27)
|
|
362
362
|
|
|
363
|
-
**Note:** Version bump only for package @nestjs-query
|
|
363
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
364
364
|
|
|
365
365
|
|
|
366
366
|
|
|
367
367
|
|
|
368
368
|
|
|
369
|
-
# [0.15.0](https://github.com/
|
|
369
|
+
# [0.15.0](https://github.com/tripss/nestjs-query/compare/v0.14.3...v0.15.0) (2020-06-23)
|
|
370
370
|
|
|
371
371
|
|
|
372
372
|
### Features
|
|
373
373
|
|
|
374
|
-
* **graphql,connection:** Add totalCount to connections ([ed1e84a](https://github.com/
|
|
374
|
+
* **graphql,connection:** Add totalCount to connections ([ed1e84a](https://github.com/tripss/nestjs-query/commit/ed1e84a2feb6f89c3b270fcbc1d0eaf6aec5e575))
|
|
375
375
|
|
|
376
376
|
|
|
377
377
|
|
|
378
378
|
|
|
379
379
|
|
|
380
|
-
## [0.14.2](https://github.com/
|
|
380
|
+
## [0.14.2](https://github.com/tripss/nestjs-query/compare/v0.14.1...v0.14.2) (2020-06-19)
|
|
381
381
|
|
|
382
382
|
|
|
383
383
|
### Bug Fixes
|
|
384
384
|
|
|
385
|
-
* **typeorm:** Allow using string based typeorm relations ([55c157d](https://github.com/
|
|
385
|
+
* **typeorm:** Allow using string based typeorm relations ([55c157d](https://github.com/tripss/nestjs-query/commit/55c157dbea9ce8c1186a2c2ea17f847857fd2226))
|
|
386
386
|
|
|
387
387
|
|
|
388
388
|
|
|
389
389
|
|
|
390
390
|
|
|
391
|
-
# [0.14.0](https://github.com/
|
|
391
|
+
# [0.14.0](https://github.com/tripss/nestjs-query/compare/v0.13.2...v0.14.0) (2020-06-18)
|
|
392
392
|
|
|
393
|
-
**Note:** Version bump only for package @nestjs-query
|
|
393
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
394
394
|
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
|
|
398
398
|
|
|
399
|
-
# [0.13.0](https://github.com/
|
|
399
|
+
# [0.13.0](https://github.com/tripss/nestjs-query/compare/v0.12.0...v0.13.0) (2020-06-12)
|
|
400
400
|
|
|
401
|
-
**Note:** Version bump only for package @nestjs-query
|
|
401
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
402
402
|
|
|
403
403
|
|
|
404
404
|
|
|
405
405
|
|
|
406
406
|
|
|
407
|
-
# [0.12.0](https://github.com/
|
|
407
|
+
# [0.12.0](https://github.com/tripss/nestjs-query/compare/v0.11.8...v0.12.0) (2020-06-07)
|
|
408
408
|
|
|
409
|
-
**Note:** Version bump only for package @nestjs-query
|
|
409
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
410
410
|
|
|
411
411
|
|
|
412
412
|
|
|
413
413
|
|
|
414
414
|
|
|
415
|
-
## [0.11.8](https://github.com/
|
|
415
|
+
## [0.11.8](https://github.com/tripss/nestjs-query/compare/v0.11.7...v0.11.8) (2020-05-30)
|
|
416
416
|
|
|
417
|
-
**Note:** Version bump only for package @nestjs-query
|
|
417
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
418
418
|
|
|
419
419
|
|
|
420
420
|
|
|
421
421
|
|
|
422
422
|
|
|
423
|
-
## [0.11.7](https://github.com/
|
|
423
|
+
## [0.11.7](https://github.com/tripss/nestjs-query/compare/v0.11.6...v0.11.7) (2020-05-29)
|
|
424
424
|
|
|
425
|
-
**Note:** Version bump only for package @nestjs-query
|
|
425
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
426
426
|
|
|
427
427
|
|
|
428
428
|
|
|
429
429
|
|
|
430
430
|
|
|
431
|
-
## [0.11.6](https://github.com/
|
|
431
|
+
## [0.11.6](https://github.com/tripss/nestjs-query/compare/v0.11.5...v0.11.6) (2020-05-26)
|
|
432
432
|
|
|
433
|
-
**Note:** Version bump only for package @nestjs-query
|
|
433
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
434
434
|
|
|
435
435
|
|
|
436
436
|
|
|
437
437
|
|
|
438
438
|
|
|
439
|
-
## [0.11.5](https://github.com/
|
|
439
|
+
## [0.11.5](https://github.com/tripss/nestjs-query/compare/v0.11.4...v0.11.5) (2020-05-21)
|
|
440
440
|
|
|
441
|
-
**Note:** Version bump only for package @nestjs-query
|
|
441
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
442
442
|
|
|
443
443
|
|
|
444
444
|
|
|
445
445
|
|
|
446
446
|
|
|
447
|
-
## [0.11.4](https://github.com/
|
|
447
|
+
## [0.11.4](https://github.com/tripss/nestjs-query/compare/v0.11.3...v0.11.4) (2020-05-19)
|
|
448
448
|
|
|
449
|
-
**Note:** Version bump only for package @nestjs-query
|
|
449
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
450
450
|
|
|
451
451
|
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
|
|
455
|
-
## [0.11.3](https://github.com/
|
|
455
|
+
## [0.11.3](https://github.com/tripss/nestjs-query/compare/v0.11.2...v0.11.3) (2020-05-16)
|
|
456
456
|
|
|
457
|
-
**Note:** Version bump only for package @nestjs-query
|
|
457
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
458
458
|
|
|
459
459
|
|
|
460
460
|
|
|
461
461
|
|
|
462
462
|
|
|
463
|
-
## [0.11.2](https://github.com/
|
|
463
|
+
## [0.11.2](https://github.com/tripss/nestjs-query/compare/v0.11.1...v0.11.2) (2020-05-14)
|
|
464
464
|
|
|
465
|
-
**Note:** Version bump only for package @nestjs-query
|
|
465
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
466
466
|
|
|
467
467
|
|
|
468
468
|
|
|
469
469
|
|
|
470
470
|
|
|
471
|
-
## [0.11.1](https://github.com/
|
|
471
|
+
## [0.11.1](https://github.com/tripss/nestjs-query/compare/v0.11.0...v0.11.1) (2020-05-11)
|
|
472
472
|
|
|
473
|
-
**Note:** Version bump only for package @nestjs-query
|
|
473
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
474
474
|
|
|
475
475
|
|
|
476
476
|
|
|
477
477
|
|
|
478
478
|
|
|
479
|
-
# [0.11.0](https://github.com/
|
|
479
|
+
# [0.11.0](https://github.com/tripss/nestjs-query/compare/v0.10.2...v0.11.0) (2020-05-09)
|
|
480
480
|
|
|
481
481
|
|
|
482
482
|
### Features
|
|
483
483
|
|
|
484
|
-
* **graphql:** Add graphql module ([282c421](https://github.com/
|
|
484
|
+
* **graphql:** Add graphql module ([282c421](https://github.com/tripss/nestjs-query/commit/282c421d0e6f67fe750fa6005f6cb7d960c8fbd0))
|
|
485
485
|
|
|
486
486
|
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
|
|
490
|
-
## [0.10.2](https://github.com/
|
|
490
|
+
## [0.10.2](https://github.com/tripss/nestjs-query/compare/v0.10.1...v0.10.2) (2020-05-04)
|
|
491
491
|
|
|
492
|
-
**Note:** Version bump only for package @nestjs-query
|
|
492
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
493
493
|
|
|
494
494
|
|
|
495
495
|
|
|
496
496
|
|
|
497
497
|
|
|
498
|
-
# [0.10.0](https://github.com/
|
|
498
|
+
# [0.10.0](https://github.com/tripss/nestjs-query/compare/v0.9.0...v0.10.0) (2020-04-29)
|
|
499
499
|
|
|
500
|
-
**Note:** Version bump only for package @nestjs-query
|
|
500
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
501
501
|
|
|
502
502
|
|
|
503
503
|
|
|
504
504
|
|
|
505
505
|
|
|
506
|
-
# [0.9.0](https://github.com/
|
|
506
|
+
# [0.9.0](https://github.com/tripss/nestjs-query/compare/v0.8.9...v0.9.0) (2020-04-26)
|
|
507
507
|
|
|
508
508
|
|
|
509
509
|
### Features
|
|
510
510
|
|
|
511
|
-
* **typeorm:** Add support for soft deletes ([2ab42fa](https://github.com/
|
|
511
|
+
* **typeorm:** Add support for soft deletes ([2ab42fa](https://github.com/tripss/nestjs-query/commit/2ab42faee2802abae4d8496e2529b8eb23860ed4))
|
|
512
512
|
|
|
513
513
|
|
|
514
514
|
|
|
515
515
|
|
|
516
516
|
|
|
517
|
-
## [0.8.9](https://github.com/
|
|
517
|
+
## [0.8.9](https://github.com/tripss/nestjs-query/compare/v0.8.8...v0.8.9) (2020-04-24)
|
|
518
518
|
|
|
519
|
-
**Note:** Version bump only for package @nestjs-query
|
|
519
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|
|
520
520
|
|
|
521
521
|
|
|
522
522
|
|
|
523
523
|
|
|
524
524
|
|
|
525
|
-
## [0.8.7](https://github.com/
|
|
525
|
+
## [0.8.7](https://github.com/tripss/nestjs-query/compare/v0.8.6...v0.8.7) (2020-04-23)
|
|
526
526
|
|
|
527
|
-
**Note:** Version bump only for package @nestjs-query
|
|
527
|
+
**Note:** Version bump only for package @ptc-org/nestjs-query-typeorm
|