-
Notifications
You must be signed in to change notification settings - Fork 27
/
where.go
290 lines (240 loc) · 10.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
// Code generated by ent, DO NOT EDIT.
package integrationattachment
import (
"time"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"github.com/chainloop-dev/chainloop/app/controlplane/internal/data/ent/predicate"
"github.com/google/uuid"
)
// ID filters vertices based on their ID field.
func ID(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id uuid.UUID) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLTE(FieldID, id))
}
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAt(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldCreatedAt, v))
}
// Configuration applies equality check predicate on the "configuration" field. It's identical to ConfigurationEQ.
func Configuration(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldConfiguration, v))
}
// DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
func DeletedAt(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldDeletedAt, v))
}
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtEQ(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldCreatedAt, v))
}
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNEQ(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNEQ(FieldCreatedAt, v))
}
// CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtIn(vs ...time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIn(FieldCreatedAt, vs...))
}
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func CreatedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotIn(FieldCreatedAt, vs...))
}
// CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGT(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGT(FieldCreatedAt, v))
}
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtGTE(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGTE(FieldCreatedAt, v))
}
// CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLT(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLT(FieldCreatedAt, v))
}
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtLTE(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLTE(FieldCreatedAt, v))
}
// ConfigurationEQ applies the EQ predicate on the "configuration" field.
func ConfigurationEQ(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldConfiguration, v))
}
// ConfigurationNEQ applies the NEQ predicate on the "configuration" field.
func ConfigurationNEQ(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNEQ(FieldConfiguration, v))
}
// ConfigurationIn applies the In predicate on the "configuration" field.
func ConfigurationIn(vs ...[]byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIn(FieldConfiguration, vs...))
}
// ConfigurationNotIn applies the NotIn predicate on the "configuration" field.
func ConfigurationNotIn(vs ...[]byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotIn(FieldConfiguration, vs...))
}
// ConfigurationGT applies the GT predicate on the "configuration" field.
func ConfigurationGT(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGT(FieldConfiguration, v))
}
// ConfigurationGTE applies the GTE predicate on the "configuration" field.
func ConfigurationGTE(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGTE(FieldConfiguration, v))
}
// ConfigurationLT applies the LT predicate on the "configuration" field.
func ConfigurationLT(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLT(FieldConfiguration, v))
}
// ConfigurationLTE applies the LTE predicate on the "configuration" field.
func ConfigurationLTE(v []byte) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLTE(FieldConfiguration, v))
}
// ConfigurationIsNil applies the IsNil predicate on the "configuration" field.
func ConfigurationIsNil() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIsNull(FieldConfiguration))
}
// ConfigurationNotNil applies the NotNil predicate on the "configuration" field.
func ConfigurationNotNil() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotNull(FieldConfiguration))
}
// DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
func DeletedAtEQ(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldEQ(FieldDeletedAt, v))
}
// DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
func DeletedAtNEQ(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNEQ(FieldDeletedAt, v))
}
// DeletedAtIn applies the In predicate on the "deleted_at" field.
func DeletedAtIn(vs ...time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIn(FieldDeletedAt, vs...))
}
// DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
func DeletedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotIn(FieldDeletedAt, vs...))
}
// DeletedAtGT applies the GT predicate on the "deleted_at" field.
func DeletedAtGT(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGT(FieldDeletedAt, v))
}
// DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
func DeletedAtGTE(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldGTE(FieldDeletedAt, v))
}
// DeletedAtLT applies the LT predicate on the "deleted_at" field.
func DeletedAtLT(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLT(FieldDeletedAt, v))
}
// DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
func DeletedAtLTE(v time.Time) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldLTE(FieldDeletedAt, v))
}
// DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
func DeletedAtIsNil() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldIsNull(FieldDeletedAt))
}
// DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
func DeletedAtNotNil() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(sql.FieldNotNull(FieldDeletedAt))
}
// HasIntegration applies the HasEdge predicate on the "integration" edge.
func HasIntegration() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.Edge(sqlgraph.M2O, false, IntegrationTable, IntegrationColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasIntegrationWith applies the HasEdge predicate on the "integration" edge with a given conditions (other predicates).
func HasIntegrationWith(preds ...predicate.Integration) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(func(s *sql.Selector) {
step := newIntegrationStep()
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// HasWorkflow applies the HasEdge predicate on the "workflow" edge.
func HasWorkflow() predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.Edge(sqlgraph.M2O, false, WorkflowTable, WorkflowColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasWorkflowWith applies the HasEdge predicate on the "workflow" edge with a given conditions (other predicates).
func HasWorkflowWith(preds ...predicate.Workflow) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(func(s *sql.Selector) {
step := newWorkflowStep()
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.IntegrationAttachment) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(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.IntegrationAttachment) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(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.IntegrationAttachment) predicate.IntegrationAttachment {
return predicate.IntegrationAttachment(func(s *sql.Selector) {
p(s.Not())
})
}