-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
telegramchatfeatureflags_query.go
535 lines (493 loc) · 17.4 KB
/
telegramchatfeatureflags_query.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"fmt"
"math"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/google/uuid"
"github.com/nekomeowww/insights-bot/ent/internal"
"github.com/nekomeowww/insights-bot/ent/predicate"
"github.com/nekomeowww/insights-bot/ent/telegramchatfeatureflags"
)
// TelegramChatFeatureFlagsQuery is the builder for querying TelegramChatFeatureFlags entities.
type TelegramChatFeatureFlagsQuery struct {
config
ctx *QueryContext
order []telegramchatfeatureflags.OrderOption
inters []Interceptor
predicates []predicate.TelegramChatFeatureFlags
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Where adds a new predicate for the TelegramChatFeatureFlagsQuery builder.
func (tcffq *TelegramChatFeatureFlagsQuery) Where(ps ...predicate.TelegramChatFeatureFlags) *TelegramChatFeatureFlagsQuery {
tcffq.predicates = append(tcffq.predicates, ps...)
return tcffq
}
// Limit the number of records to be returned by this query.
func (tcffq *TelegramChatFeatureFlagsQuery) Limit(limit int) *TelegramChatFeatureFlagsQuery {
tcffq.ctx.Limit = &limit
return tcffq
}
// Offset to start from.
func (tcffq *TelegramChatFeatureFlagsQuery) Offset(offset int) *TelegramChatFeatureFlagsQuery {
tcffq.ctx.Offset = &offset
return tcffq
}
// Unique configures the query builder to filter duplicate records on query.
// By default, unique is set to true, and can be disabled using this method.
func (tcffq *TelegramChatFeatureFlagsQuery) Unique(unique bool) *TelegramChatFeatureFlagsQuery {
tcffq.ctx.Unique = &unique
return tcffq
}
// Order specifies how the records should be ordered.
func (tcffq *TelegramChatFeatureFlagsQuery) Order(o ...telegramchatfeatureflags.OrderOption) *TelegramChatFeatureFlagsQuery {
tcffq.order = append(tcffq.order, o...)
return tcffq
}
// First returns the first TelegramChatFeatureFlags entity from the query.
// Returns a *NotFoundError when no TelegramChatFeatureFlags was found.
func (tcffq *TelegramChatFeatureFlagsQuery) First(ctx context.Context) (*TelegramChatFeatureFlags, error) {
nodes, err := tcffq.Limit(1).All(setContextOp(ctx, tcffq.ctx, "First"))
if err != nil {
return nil, err
}
if len(nodes) == 0 {
return nil, &NotFoundError{telegramchatfeatureflags.Label}
}
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) FirstX(ctx context.Context) *TelegramChatFeatureFlags {
node, err := tcffq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return node
}
// FirstID returns the first TelegramChatFeatureFlags ID from the query.
// Returns a *NotFoundError when no TelegramChatFeatureFlags ID was found.
func (tcffq *TelegramChatFeatureFlagsQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) {
var ids []uuid.UUID
if ids, err = tcffq.Limit(1).IDs(setContextOp(ctx, tcffq.ctx, "FirstID")); err != nil {
return
}
if len(ids) == 0 {
err = &NotFoundError{telegramchatfeatureflags.Label}
return
}
return ids[0], nil
}
// FirstIDX is like FirstID, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) FirstIDX(ctx context.Context) uuid.UUID {
id, err := tcffq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns a single TelegramChatFeatureFlags entity found by the query, ensuring it only returns one.
// Returns a *NotSingularError when more than one TelegramChatFeatureFlags entity is found.
// Returns a *NotFoundError when no TelegramChatFeatureFlags entities are found.
func (tcffq *TelegramChatFeatureFlagsQuery) Only(ctx context.Context) (*TelegramChatFeatureFlags, error) {
nodes, err := tcffq.Limit(2).All(setContextOp(ctx, tcffq.ctx, "Only"))
if err != nil {
return nil, err
}
switch len(nodes) {
case 1:
return nodes[0], nil
case 0:
return nil, &NotFoundError{telegramchatfeatureflags.Label}
default:
return nil, &NotSingularError{telegramchatfeatureflags.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) OnlyX(ctx context.Context) *TelegramChatFeatureFlags {
node, err := tcffq.Only(ctx)
if err != nil {
panic(err)
}
return node
}
// OnlyID is like Only, but returns the only TelegramChatFeatureFlags ID in the query.
// Returns a *NotSingularError when more than one TelegramChatFeatureFlags ID is found.
// Returns a *NotFoundError when no entities are found.
func (tcffq *TelegramChatFeatureFlagsQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) {
var ids []uuid.UUID
if ids, err = tcffq.Limit(2).IDs(setContextOp(ctx, tcffq.ctx, "OnlyID")); err != nil {
return
}
switch len(ids) {
case 1:
id = ids[0]
case 0:
err = &NotFoundError{telegramchatfeatureflags.Label}
default:
err = &NotSingularError{telegramchatfeatureflags.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) OnlyIDX(ctx context.Context) uuid.UUID {
id, err := tcffq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of TelegramChatFeatureFlagsSlice.
func (tcffq *TelegramChatFeatureFlagsQuery) All(ctx context.Context) ([]*TelegramChatFeatureFlags, error) {
ctx = setContextOp(ctx, tcffq.ctx, "All")
if err := tcffq.prepareQuery(ctx); err != nil {
return nil, err
}
qr := querierAll[[]*TelegramChatFeatureFlags, *TelegramChatFeatureFlagsQuery]()
return withInterceptors[[]*TelegramChatFeatureFlags](ctx, tcffq, qr, tcffq.inters)
}
// AllX is like All, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) AllX(ctx context.Context) []*TelegramChatFeatureFlags {
nodes, err := tcffq.All(ctx)
if err != nil {
panic(err)
}
return nodes
}
// IDs executes the query and returns a list of TelegramChatFeatureFlags IDs.
func (tcffq *TelegramChatFeatureFlagsQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) {
if tcffq.ctx.Unique == nil && tcffq.path != nil {
tcffq.Unique(true)
}
ctx = setContextOp(ctx, tcffq.ctx, "IDs")
if err = tcffq.Select(telegramchatfeatureflags.FieldID).Scan(ctx, &ids); err != nil {
return nil, err
}
return ids, nil
}
// IDsX is like IDs, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) IDsX(ctx context.Context) []uuid.UUID {
ids, err := tcffq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (tcffq *TelegramChatFeatureFlagsQuery) Count(ctx context.Context) (int, error) {
ctx = setContextOp(ctx, tcffq.ctx, "Count")
if err := tcffq.prepareQuery(ctx); err != nil {
return 0, err
}
return withInterceptors[int](ctx, tcffq, querierCount[*TelegramChatFeatureFlagsQuery](), tcffq.inters)
}
// CountX is like Count, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) CountX(ctx context.Context) int {
count, err := tcffq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (tcffq *TelegramChatFeatureFlagsQuery) Exist(ctx context.Context) (bool, error) {
ctx = setContextOp(ctx, tcffq.ctx, "Exist")
switch _, err := tcffq.FirstID(ctx); {
case IsNotFound(err):
return false, nil
case err != nil:
return false, fmt.Errorf("ent: check existence: %w", err)
default:
return true, nil
}
}
// ExistX is like Exist, but panics if an error occurs.
func (tcffq *TelegramChatFeatureFlagsQuery) ExistX(ctx context.Context) bool {
exist, err := tcffq.Exist(ctx)
if err != nil {
panic(err)
}
return exist
}
// Clone returns a duplicate of the TelegramChatFeatureFlagsQuery builder, including all associated steps. It can be
// used to prepare common query builders and use them differently after the clone is made.
func (tcffq *TelegramChatFeatureFlagsQuery) Clone() *TelegramChatFeatureFlagsQuery {
if tcffq == nil {
return nil
}
return &TelegramChatFeatureFlagsQuery{
config: tcffq.config,
ctx: tcffq.ctx.Clone(),
order: append([]telegramchatfeatureflags.OrderOption{}, tcffq.order...),
inters: append([]Interceptor{}, tcffq.inters...),
predicates: append([]predicate.TelegramChatFeatureFlags{}, tcffq.predicates...),
// clone intermediate query.
sql: tcffq.sql.Clone(),
path: tcffq.path,
}
}
// GroupBy is used to group vertices by one or more fields/columns.
// It is often used with aggregate functions, like: count, max, mean, min, sum.
//
// Example:
//
// var v []struct {
// ChatID int64 `json:"chat_id,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.TelegramChatFeatureFlags.Query().
// GroupBy(telegramchatfeatureflags.FieldChatID).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
func (tcffq *TelegramChatFeatureFlagsQuery) GroupBy(field string, fields ...string) *TelegramChatFeatureFlagsGroupBy {
tcffq.ctx.Fields = append([]string{field}, fields...)
grbuild := &TelegramChatFeatureFlagsGroupBy{build: tcffq}
grbuild.flds = &tcffq.ctx.Fields
grbuild.label = telegramchatfeatureflags.Label
grbuild.scan = grbuild.Scan
return grbuild
}
// Select allows the selection one or more fields/columns for the given query,
// instead of selecting all fields in the entity.
//
// Example:
//
// var v []struct {
// ChatID int64 `json:"chat_id,omitempty"`
// }
//
// client.TelegramChatFeatureFlags.Query().
// Select(telegramchatfeatureflags.FieldChatID).
// Scan(ctx, &v)
func (tcffq *TelegramChatFeatureFlagsQuery) Select(fields ...string) *TelegramChatFeatureFlagsSelect {
tcffq.ctx.Fields = append(tcffq.ctx.Fields, fields...)
sbuild := &TelegramChatFeatureFlagsSelect{TelegramChatFeatureFlagsQuery: tcffq}
sbuild.label = telegramchatfeatureflags.Label
sbuild.flds, sbuild.scan = &tcffq.ctx.Fields, sbuild.Scan
return sbuild
}
// Aggregate returns a TelegramChatFeatureFlagsSelect configured with the given aggregations.
func (tcffq *TelegramChatFeatureFlagsQuery) Aggregate(fns ...AggregateFunc) *TelegramChatFeatureFlagsSelect {
return tcffq.Select().Aggregate(fns...)
}
func (tcffq *TelegramChatFeatureFlagsQuery) prepareQuery(ctx context.Context) error {
for _, inter := range tcffq.inters {
if inter == nil {
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
}
if trv, ok := inter.(Traverser); ok {
if err := trv.Traverse(ctx, tcffq); err != nil {
return err
}
}
}
for _, f := range tcffq.ctx.Fields {
if !telegramchatfeatureflags.ValidColumn(f) {
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
}
if tcffq.path != nil {
prev, err := tcffq.path(ctx)
if err != nil {
return err
}
tcffq.sql = prev
}
return nil
}
func (tcffq *TelegramChatFeatureFlagsQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*TelegramChatFeatureFlags, error) {
var (
nodes = []*TelegramChatFeatureFlags{}
_spec = tcffq.querySpec()
)
_spec.ScanValues = func(columns []string) ([]any, error) {
return (*TelegramChatFeatureFlags).scanValues(nil, columns)
}
_spec.Assign = func(columns []string, values []any) error {
node := &TelegramChatFeatureFlags{config: tcffq.config}
nodes = append(nodes, node)
return node.assignValues(columns, values)
}
_spec.Node.Schema = tcffq.schemaConfig.TelegramChatFeatureFlags
ctx = internal.NewSchemaConfigContext(ctx, tcffq.schemaConfig)
for i := range hooks {
hooks[i](ctx, _spec)
}
if err := sqlgraph.QueryNodes(ctx, tcffq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
return nodes, nil
}
func (tcffq *TelegramChatFeatureFlagsQuery) sqlCount(ctx context.Context) (int, error) {
_spec := tcffq.querySpec()
_spec.Node.Schema = tcffq.schemaConfig.TelegramChatFeatureFlags
ctx = internal.NewSchemaConfigContext(ctx, tcffq.schemaConfig)
_spec.Node.Columns = tcffq.ctx.Fields
if len(tcffq.ctx.Fields) > 0 {
_spec.Unique = tcffq.ctx.Unique != nil && *tcffq.ctx.Unique
}
return sqlgraph.CountNodes(ctx, tcffq.driver, _spec)
}
func (tcffq *TelegramChatFeatureFlagsQuery) querySpec() *sqlgraph.QuerySpec {
_spec := sqlgraph.NewQuerySpec(telegramchatfeatureflags.Table, telegramchatfeatureflags.Columns, sqlgraph.NewFieldSpec(telegramchatfeatureflags.FieldID, field.TypeUUID))
_spec.From = tcffq.sql
if unique := tcffq.ctx.Unique; unique != nil {
_spec.Unique = *unique
} else if tcffq.path != nil {
_spec.Unique = true
}
if fields := tcffq.ctx.Fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, telegramchatfeatureflags.FieldID)
for i := range fields {
if fields[i] != telegramchatfeatureflags.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
}
}
}
if ps := tcffq.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if limit := tcffq.ctx.Limit; limit != nil {
_spec.Limit = *limit
}
if offset := tcffq.ctx.Offset; offset != nil {
_spec.Offset = *offset
}
if ps := tcffq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (tcffq *TelegramChatFeatureFlagsQuery) sqlQuery(ctx context.Context) *sql.Selector {
builder := sql.Dialect(tcffq.driver.Dialect())
t1 := builder.Table(telegramchatfeatureflags.Table)
columns := tcffq.ctx.Fields
if len(columns) == 0 {
columns = telegramchatfeatureflags.Columns
}
selector := builder.Select(t1.Columns(columns...)...).From(t1)
if tcffq.sql != nil {
selector = tcffq.sql
selector.Select(selector.Columns(columns...)...)
}
if tcffq.ctx.Unique != nil && *tcffq.ctx.Unique {
selector.Distinct()
}
t1.Schema(tcffq.schemaConfig.TelegramChatFeatureFlags)
ctx = internal.NewSchemaConfigContext(ctx, tcffq.schemaConfig)
selector.WithContext(ctx)
for _, p := range tcffq.predicates {
p(selector)
}
for _, p := range tcffq.order {
p(selector)
}
if offset := tcffq.ctx.Offset; offset != nil {
// limit is mandatory for offset clause. We start
// with default value, and override it below if needed.
selector.Offset(*offset).Limit(math.MaxInt32)
}
if limit := tcffq.ctx.Limit; limit != nil {
selector.Limit(*limit)
}
return selector
}
// TelegramChatFeatureFlagsGroupBy is the group-by builder for TelegramChatFeatureFlags entities.
type TelegramChatFeatureFlagsGroupBy struct {
selector
build *TelegramChatFeatureFlagsQuery
}
// Aggregate adds the given aggregation functions to the group-by query.
func (tcffgb *TelegramChatFeatureFlagsGroupBy) Aggregate(fns ...AggregateFunc) *TelegramChatFeatureFlagsGroupBy {
tcffgb.fns = append(tcffgb.fns, fns...)
return tcffgb
}
// Scan applies the selector query and scans the result into the given value.
func (tcffgb *TelegramChatFeatureFlagsGroupBy) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, tcffgb.build.ctx, "GroupBy")
if err := tcffgb.build.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*TelegramChatFeatureFlagsQuery, *TelegramChatFeatureFlagsGroupBy](ctx, tcffgb.build, tcffgb, tcffgb.build.inters, v)
}
func (tcffgb *TelegramChatFeatureFlagsGroupBy) sqlScan(ctx context.Context, root *TelegramChatFeatureFlagsQuery, v any) error {
selector := root.sqlQuery(ctx).Select()
aggregation := make([]string, 0, len(tcffgb.fns))
for _, fn := range tcffgb.fns {
aggregation = append(aggregation, fn(selector))
}
if len(selector.SelectedColumns()) == 0 {
columns := make([]string, 0, len(*tcffgb.flds)+len(tcffgb.fns))
for _, f := range *tcffgb.flds {
columns = append(columns, selector.C(f))
}
columns = append(columns, aggregation...)
selector.Select(columns...)
}
selector.GroupBy(selector.Columns(*tcffgb.flds...)...)
if err := selector.Err(); err != nil {
return err
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := tcffgb.build.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// TelegramChatFeatureFlagsSelect is the builder for selecting fields of TelegramChatFeatureFlags entities.
type TelegramChatFeatureFlagsSelect struct {
*TelegramChatFeatureFlagsQuery
selector
}
// Aggregate adds the given aggregation functions to the selector query.
func (tcffs *TelegramChatFeatureFlagsSelect) Aggregate(fns ...AggregateFunc) *TelegramChatFeatureFlagsSelect {
tcffs.fns = append(tcffs.fns, fns...)
return tcffs
}
// Scan applies the selector query and scans the result into the given value.
func (tcffs *TelegramChatFeatureFlagsSelect) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, tcffs.ctx, "Select")
if err := tcffs.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*TelegramChatFeatureFlagsQuery, *TelegramChatFeatureFlagsSelect](ctx, tcffs.TelegramChatFeatureFlagsQuery, tcffs, tcffs.inters, v)
}
func (tcffs *TelegramChatFeatureFlagsSelect) sqlScan(ctx context.Context, root *TelegramChatFeatureFlagsQuery, v any) error {
selector := root.sqlQuery(ctx)
aggregation := make([]string, 0, len(tcffs.fns))
for _, fn := range tcffs.fns {
aggregation = append(aggregation, fn(selector))
}
switch n := len(*tcffs.selector.flds); {
case n == 0 && len(aggregation) > 0:
selector.Select(aggregation...)
case n != 0 && len(aggregation) > 0:
selector.AppendSelect(aggregation...)
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := tcffs.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}