forked from rdeusser/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
where.go
430 lines (358 loc) · 13.8 KB
/
where.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
// Copyright 2019-present Facebook
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by entc, DO NOT EDIT.
package category
import (
"time"
"entgo.io/contrib/entgql/internal/todo/ent/schema/schematype"
"entgo.io/contrib/entgql/internal/todouuid/ent/predicate"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"github.com/google/uuid"
)
// ID filters vertices based on their ID field.
func ID(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id uuid.UUID) predicate.Category {
return predicate.Category(sql.FieldLTE(FieldID, id))
}
// Text applies equality check predicate on the "text" field. It's identical to TextEQ.
func Text(v string) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldText, v))
}
// Config applies equality check predicate on the "config" field. It's identical to ConfigEQ.
func Config(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldConfig, v))
}
// Duration applies equality check predicate on the "duration" field. It's identical to DurationEQ.
func Duration(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldEQ(FieldDuration, vc))
}
// Count applies equality check predicate on the "count" field. It's identical to CountEQ.
func Count(v uint64) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldCount, v))
}
// TextEQ applies the EQ predicate on the "text" field.
func TextEQ(v string) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldText, v))
}
// TextNEQ applies the NEQ predicate on the "text" field.
func TextNEQ(v string) predicate.Category {
return predicate.Category(sql.FieldNEQ(FieldText, v))
}
// TextIn applies the In predicate on the "text" field.
func TextIn(vs ...string) predicate.Category {
return predicate.Category(sql.FieldIn(FieldText, vs...))
}
// TextNotIn applies the NotIn predicate on the "text" field.
func TextNotIn(vs ...string) predicate.Category {
return predicate.Category(sql.FieldNotIn(FieldText, vs...))
}
// TextGT applies the GT predicate on the "text" field.
func TextGT(v string) predicate.Category {
return predicate.Category(sql.FieldGT(FieldText, v))
}
// TextGTE applies the GTE predicate on the "text" field.
func TextGTE(v string) predicate.Category {
return predicate.Category(sql.FieldGTE(FieldText, v))
}
// TextLT applies the LT predicate on the "text" field.
func TextLT(v string) predicate.Category {
return predicate.Category(sql.FieldLT(FieldText, v))
}
// TextLTE applies the LTE predicate on the "text" field.
func TextLTE(v string) predicate.Category {
return predicate.Category(sql.FieldLTE(FieldText, v))
}
// TextContains applies the Contains predicate on the "text" field.
func TextContains(v string) predicate.Category {
return predicate.Category(sql.FieldContains(FieldText, v))
}
// TextHasPrefix applies the HasPrefix predicate on the "text" field.
func TextHasPrefix(v string) predicate.Category {
return predicate.Category(sql.FieldHasPrefix(FieldText, v))
}
// TextHasSuffix applies the HasSuffix predicate on the "text" field.
func TextHasSuffix(v string) predicate.Category {
return predicate.Category(sql.FieldHasSuffix(FieldText, v))
}
// TextEqualFold applies the EqualFold predicate on the "text" field.
func TextEqualFold(v string) predicate.Category {
return predicate.Category(sql.FieldEqualFold(FieldText, v))
}
// TextContainsFold applies the ContainsFold predicate on the "text" field.
func TextContainsFold(v string) predicate.Category {
return predicate.Category(sql.FieldContainsFold(FieldText, v))
}
// StatusEQ applies the EQ predicate on the "status" field.
func StatusEQ(v Status) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldStatus, v))
}
// StatusNEQ applies the NEQ predicate on the "status" field.
func StatusNEQ(v Status) predicate.Category {
return predicate.Category(sql.FieldNEQ(FieldStatus, v))
}
// StatusIn applies the In predicate on the "status" field.
func StatusIn(vs ...Status) predicate.Category {
return predicate.Category(sql.FieldIn(FieldStatus, vs...))
}
// StatusNotIn applies the NotIn predicate on the "status" field.
func StatusNotIn(vs ...Status) predicate.Category {
return predicate.Category(sql.FieldNotIn(FieldStatus, vs...))
}
// ConfigEQ applies the EQ predicate on the "config" field.
func ConfigEQ(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldConfig, v))
}
// ConfigNEQ applies the NEQ predicate on the "config" field.
func ConfigNEQ(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldNEQ(FieldConfig, v))
}
// ConfigIn applies the In predicate on the "config" field.
func ConfigIn(vs ...*schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldIn(FieldConfig, vs...))
}
// ConfigNotIn applies the NotIn predicate on the "config" field.
func ConfigNotIn(vs ...*schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldNotIn(FieldConfig, vs...))
}
// ConfigGT applies the GT predicate on the "config" field.
func ConfigGT(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldGT(FieldConfig, v))
}
// ConfigGTE applies the GTE predicate on the "config" field.
func ConfigGTE(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldGTE(FieldConfig, v))
}
// ConfigLT applies the LT predicate on the "config" field.
func ConfigLT(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldLT(FieldConfig, v))
}
// ConfigLTE applies the LTE predicate on the "config" field.
func ConfigLTE(v *schematype.CategoryConfig) predicate.Category {
return predicate.Category(sql.FieldLTE(FieldConfig, v))
}
// ConfigIsNil applies the IsNil predicate on the "config" field.
func ConfigIsNil() predicate.Category {
return predicate.Category(sql.FieldIsNull(FieldConfig))
}
// ConfigNotNil applies the NotNil predicate on the "config" field.
func ConfigNotNil() predicate.Category {
return predicate.Category(sql.FieldNotNull(FieldConfig))
}
// DurationEQ applies the EQ predicate on the "duration" field.
func DurationEQ(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldEQ(FieldDuration, vc))
}
// DurationNEQ applies the NEQ predicate on the "duration" field.
func DurationNEQ(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldNEQ(FieldDuration, vc))
}
// DurationIn applies the In predicate on the "duration" field.
func DurationIn(vs ...time.Duration) predicate.Category {
v := make([]any, len(vs))
for i := range v {
v[i] = int64(vs[i])
}
return predicate.Category(sql.FieldIn(FieldDuration, v...))
}
// DurationNotIn applies the NotIn predicate on the "duration" field.
func DurationNotIn(vs ...time.Duration) predicate.Category {
v := make([]any, len(vs))
for i := range v {
v[i] = int64(vs[i])
}
return predicate.Category(sql.FieldNotIn(FieldDuration, v...))
}
// DurationGT applies the GT predicate on the "duration" field.
func DurationGT(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldGT(FieldDuration, vc))
}
// DurationGTE applies the GTE predicate on the "duration" field.
func DurationGTE(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldGTE(FieldDuration, vc))
}
// DurationLT applies the LT predicate on the "duration" field.
func DurationLT(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldLT(FieldDuration, vc))
}
// DurationLTE applies the LTE predicate on the "duration" field.
func DurationLTE(v time.Duration) predicate.Category {
vc := int64(v)
return predicate.Category(sql.FieldLTE(FieldDuration, vc))
}
// DurationIsNil applies the IsNil predicate on the "duration" field.
func DurationIsNil() predicate.Category {
return predicate.Category(sql.FieldIsNull(FieldDuration))
}
// DurationNotNil applies the NotNil predicate on the "duration" field.
func DurationNotNil() predicate.Category {
return predicate.Category(sql.FieldNotNull(FieldDuration))
}
// CountEQ applies the EQ predicate on the "count" field.
func CountEQ(v uint64) predicate.Category {
return predicate.Category(sql.FieldEQ(FieldCount, v))
}
// CountNEQ applies the NEQ predicate on the "count" field.
func CountNEQ(v uint64) predicate.Category {
return predicate.Category(sql.FieldNEQ(FieldCount, v))
}
// CountIn applies the In predicate on the "count" field.
func CountIn(vs ...uint64) predicate.Category {
return predicate.Category(sql.FieldIn(FieldCount, vs...))
}
// CountNotIn applies the NotIn predicate on the "count" field.
func CountNotIn(vs ...uint64) predicate.Category {
return predicate.Category(sql.FieldNotIn(FieldCount, vs...))
}
// CountGT applies the GT predicate on the "count" field.
func CountGT(v uint64) predicate.Category {
return predicate.Category(sql.FieldGT(FieldCount, v))
}
// CountGTE applies the GTE predicate on the "count" field.
func CountGTE(v uint64) predicate.Category {
return predicate.Category(sql.FieldGTE(FieldCount, v))
}
// CountLT applies the LT predicate on the "count" field.
func CountLT(v uint64) predicate.Category {
return predicate.Category(sql.FieldLT(FieldCount, v))
}
// CountLTE applies the LTE predicate on the "count" field.
func CountLTE(v uint64) predicate.Category {
return predicate.Category(sql.FieldLTE(FieldCount, v))
}
// CountIsNil applies the IsNil predicate on the "count" field.
func CountIsNil() predicate.Category {
return predicate.Category(sql.FieldIsNull(FieldCount))
}
// CountNotNil applies the NotNil predicate on the "count" field.
func CountNotNil() predicate.Category {
return predicate.Category(sql.FieldNotNull(FieldCount))
}
// StringsIsNil applies the IsNil predicate on the "strings" field.
func StringsIsNil() predicate.Category {
return predicate.Category(sql.FieldIsNull(FieldStrings))
}
// StringsNotNil applies the NotNil predicate on the "strings" field.
func StringsNotNil() predicate.Category {
return predicate.Category(sql.FieldNotNull(FieldStrings))
}
// HasTodos applies the HasEdge predicate on the "todos" edge.
func HasTodos() predicate.Category {
return predicate.Category(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.Edge(sqlgraph.O2M, false, TodosTable, TodosColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasTodosWith applies the HasEdge predicate on the "todos" edge with a given conditions (other predicates).
func HasTodosWith(preds ...predicate.Todo) predicate.Category {
return predicate.Category(func(s *sql.Selector) {
step := newTodosStep()
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// HasSubCategories applies the HasEdge predicate on the "sub_categories" edge.
func HasSubCategories() predicate.Category {
return predicate.Category(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.Edge(sqlgraph.M2M, false, SubCategoriesTable, SubCategoriesPrimaryKey...),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasSubCategoriesWith applies the HasEdge predicate on the "sub_categories" edge with a given conditions (other predicates).
func HasSubCategoriesWith(preds ...predicate.Category) predicate.Category {
return predicate.Category(func(s *sql.Selector) {
step := newSubCategoriesStep()
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.Category) predicate.Category {
return predicate.Category(func(s *sql.Selector) {
s1 := s.Clone().SetP(nil)
for _, p := range predicates {
p(s1)
}
s.Where(s1.P())
})
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.Category) predicate.Category {
return predicate.Category(func(s *sql.Selector) {
s1 := s.Clone().SetP(nil)
for i, p := range predicates {
if i > 0 {
s1.Or()
}
p(s1)
}
s.Where(s1.P())
})
}
// Not applies the not operator on the given predicate.
func Not(p predicate.Category) predicate.Category {
return predicate.Category(func(s *sql.Selector) {
p(s.Not())
})
}