@@ -178,10 +178,15 @@ input NestedIntWithAggregatesFilter {
178
178
gt : Int
179
179
gte : Int
180
180
not : NestedIntWithAggregatesFilter
181
+ _count : NestedIntFilter
181
182
count : NestedIntFilter
183
+ _avg : NestedFloatFilter
182
184
avg : NestedFloatFilter
185
+ _sum : NestedIntFilter
183
186
sum : NestedIntFilter
187
+ _min : NestedIntFilter
184
188
min : NestedIntFilter
189
+ _max : NestedIntFilter
185
190
max : NestedIntFilter
186
191
}
187
192
@@ -194,10 +199,15 @@ input IntWithAggregatesFilter {
194
199
gt : Int
195
200
gte : Int
196
201
not : NestedIntWithAggregatesFilter
202
+ _count : NestedIntFilter
197
203
count : NestedIntFilter
204
+ _avg : NestedFloatFilter
198
205
avg : NestedFloatFilter
206
+ _sum : NestedIntFilter
199
207
sum : NestedIntFilter
208
+ _min : NestedIntFilter
200
209
min : NestedIntFilter
210
+ _max : NestedIntFilter
201
211
max : NestedIntFilter
202
212
}
203
213
@@ -213,8 +223,11 @@ input NestedStringWithAggregatesFilter {
213
223
startsWith : String
214
224
endsWith : String
215
225
not : NestedStringWithAggregatesFilter
226
+ _count : NestedIntFilter
216
227
count : NestedIntFilter
228
+ _min : NestedStringFilter
217
229
min : NestedStringFilter
230
+ _max : NestedStringFilter
218
231
max : NestedStringFilter
219
232
}
220
233
@@ -231,8 +244,11 @@ input StringWithAggregatesFilter {
231
244
endsWith : String
232
245
mode : QueryMode
233
246
not : NestedStringWithAggregatesFilter
247
+ _count : NestedIntFilter
234
248
count : NestedIntFilter
249
+ _min : NestedStringFilter
235
250
min : NestedStringFilter
251
+ _max : NestedStringFilter
236
252
max : NestedStringFilter
237
253
}
238
254
@@ -249,11 +265,6 @@ type MessagesGroupByOutputType {
249
265
id : Int !
250
266
user_id : Int !
251
267
message : String !
252
- count : MessagesCountAggregateOutputType
253
- avg : MessagesAvgAggregateOutputType
254
- sum : MessagesSumAggregateOutputType
255
- min : MessagesMinAggregateOutputType
256
- max : MessagesMaxAggregateOutputType
257
268
}
258
269
259
270
input usersOrderByInput {
@@ -320,11 +331,6 @@ type UsersGroupByOutputType {
320
331
id : Int !
321
332
email : String !
322
333
name : String !
323
- count : UsersCountAggregateOutputType
324
- avg : UsersAvgAggregateOutputType
325
- sum : UsersSumAggregateOutputType
326
- min : UsersMinAggregateOutputType
327
- max : UsersMaxAggregateOutputType
328
334
}
329
335
330
336
type Query {
0 commit comments