// 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/versia-pub/versia-go/ent/follow" "github.com/versia-pub/versia-go/ent/predicate" "github.com/versia-pub/versia-go/ent/user" ) // FollowQuery is the builder for querying Follow entities. type FollowQuery struct { config ctx *QueryContext order []follow.OrderOption inters []Interceptor predicates []predicate.Follow withFollower *UserQuery withFollowee *UserQuery withFKs bool // intermediate query (i.e. traversal path). sql *sql.Selector path func(context.Context) (*sql.Selector, error) } // Where adds a new predicate for the FollowQuery builder. func (fq *FollowQuery) Where(ps ...predicate.Follow) *FollowQuery { fq.predicates = append(fq.predicates, ps...) return fq } // Limit the number of records to be returned by this query. func (fq *FollowQuery) Limit(limit int) *FollowQuery { fq.ctx.Limit = &limit return fq } // Offset to start from. func (fq *FollowQuery) Offset(offset int) *FollowQuery { fq.ctx.Offset = &offset return fq } // 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 (fq *FollowQuery) Unique(unique bool) *FollowQuery { fq.ctx.Unique = &unique return fq } // Order specifies how the records should be ordered. func (fq *FollowQuery) Order(o ...follow.OrderOption) *FollowQuery { fq.order = append(fq.order, o...) return fq } // QueryFollower chains the current query on the "follower" edge. func (fq *FollowQuery) QueryFollower() *UserQuery { query := (&UserClient{config: fq.config}).Query() query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := fq.prepareQuery(ctx); err != nil { return nil, err } selector := fq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(follow.Table, follow.FieldID, selector), sqlgraph.To(user.Table, user.FieldID), sqlgraph.Edge(sqlgraph.M2O, false, follow.FollowerTable, follow.FollowerColumn), ) fromU = sqlgraph.SetNeighbors(fq.driver.Dialect(), step) return fromU, nil } return query } // QueryFollowee chains the current query on the "followee" edge. func (fq *FollowQuery) QueryFollowee() *UserQuery { query := (&UserClient{config: fq.config}).Query() query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := fq.prepareQuery(ctx); err != nil { return nil, err } selector := fq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(follow.Table, follow.FieldID, selector), sqlgraph.To(user.Table, user.FieldID), sqlgraph.Edge(sqlgraph.M2O, false, follow.FolloweeTable, follow.FolloweeColumn), ) fromU = sqlgraph.SetNeighbors(fq.driver.Dialect(), step) return fromU, nil } return query } // First returns the first Follow entity from the query. // Returns a *NotFoundError when no Follow was found. func (fq *FollowQuery) First(ctx context.Context) (*Follow, error) { nodes, err := fq.Limit(1).All(setContextOp(ctx, fq.ctx, "First")) if err != nil { return nil, err } if len(nodes) == 0 { return nil, &NotFoundError{follow.Label} } return nodes[0], nil } // FirstX is like First, but panics if an error occurs. func (fq *FollowQuery) FirstX(ctx context.Context) *Follow { node, err := fq.First(ctx) if err != nil && !IsNotFound(err) { panic(err) } return node } // FirstID returns the first Follow ID from the query. // Returns a *NotFoundError when no Follow ID was found. func (fq *FollowQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) { var ids []uuid.UUID if ids, err = fq.Limit(1).IDs(setContextOp(ctx, fq.ctx, "FirstID")); err != nil { return } if len(ids) == 0 { err = &NotFoundError{follow.Label} return } return ids[0], nil } // FirstIDX is like FirstID, but panics if an error occurs. func (fq *FollowQuery) FirstIDX(ctx context.Context) uuid.UUID { id, err := fq.FirstID(ctx) if err != nil && !IsNotFound(err) { panic(err) } return id } // Only returns a single Follow entity found by the query, ensuring it only returns one. // Returns a *NotSingularError when more than one Follow entity is found. // Returns a *NotFoundError when no Follow entities are found. func (fq *FollowQuery) Only(ctx context.Context) (*Follow, error) { nodes, err := fq.Limit(2).All(setContextOp(ctx, fq.ctx, "Only")) if err != nil { return nil, err } switch len(nodes) { case 1: return nodes[0], nil case 0: return nil, &NotFoundError{follow.Label} default: return nil, &NotSingularError{follow.Label} } } // OnlyX is like Only, but panics if an error occurs. func (fq *FollowQuery) OnlyX(ctx context.Context) *Follow { node, err := fq.Only(ctx) if err != nil { panic(err) } return node } // OnlyID is like Only, but returns the only Follow ID in the query. // Returns a *NotSingularError when more than one Follow ID is found. // Returns a *NotFoundError when no entities are found. func (fq *FollowQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) { var ids []uuid.UUID if ids, err = fq.Limit(2).IDs(setContextOp(ctx, fq.ctx, "OnlyID")); err != nil { return } switch len(ids) { case 1: id = ids[0] case 0: err = &NotFoundError{follow.Label} default: err = &NotSingularError{follow.Label} } return } // OnlyIDX is like OnlyID, but panics if an error occurs. func (fq *FollowQuery) OnlyIDX(ctx context.Context) uuid.UUID { id, err := fq.OnlyID(ctx) if err != nil { panic(err) } return id } // All executes the query and returns a list of Follows. func (fq *FollowQuery) All(ctx context.Context) ([]*Follow, error) { ctx = setContextOp(ctx, fq.ctx, "All") if err := fq.prepareQuery(ctx); err != nil { return nil, err } qr := querierAll[[]*Follow, *FollowQuery]() return withInterceptors[[]*Follow](ctx, fq, qr, fq.inters) } // AllX is like All, but panics if an error occurs. func (fq *FollowQuery) AllX(ctx context.Context) []*Follow { nodes, err := fq.All(ctx) if err != nil { panic(err) } return nodes } // IDs executes the query and returns a list of Follow IDs. func (fq *FollowQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) { if fq.ctx.Unique == nil && fq.path != nil { fq.Unique(true) } ctx = setContextOp(ctx, fq.ctx, "IDs") if err = fq.Select(follow.FieldID).Scan(ctx, &ids); err != nil { return nil, err } return ids, nil } // IDsX is like IDs, but panics if an error occurs. func (fq *FollowQuery) IDsX(ctx context.Context) []uuid.UUID { ids, err := fq.IDs(ctx) if err != nil { panic(err) } return ids } // Count returns the count of the given query. func (fq *FollowQuery) Count(ctx context.Context) (int, error) { ctx = setContextOp(ctx, fq.ctx, "Count") if err := fq.prepareQuery(ctx); err != nil { return 0, err } return withInterceptors[int](ctx, fq, querierCount[*FollowQuery](), fq.inters) } // CountX is like Count, but panics if an error occurs. func (fq *FollowQuery) CountX(ctx context.Context) int { count, err := fq.Count(ctx) if err != nil { panic(err) } return count } // Exist returns true if the query has elements in the graph. func (fq *FollowQuery) Exist(ctx context.Context) (bool, error) { ctx = setContextOp(ctx, fq.ctx, "Exist") switch _, err := fq.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 (fq *FollowQuery) ExistX(ctx context.Context) bool { exist, err := fq.Exist(ctx) if err != nil { panic(err) } return exist } // Clone returns a duplicate of the FollowQuery builder, including all associated steps. It can be // used to prepare common query builders and use them differently after the clone is made. func (fq *FollowQuery) Clone() *FollowQuery { if fq == nil { return nil } return &FollowQuery{ config: fq.config, ctx: fq.ctx.Clone(), order: append([]follow.OrderOption{}, fq.order...), inters: append([]Interceptor{}, fq.inters...), predicates: append([]predicate.Follow{}, fq.predicates...), withFollower: fq.withFollower.Clone(), withFollowee: fq.withFollowee.Clone(), // clone intermediate query. sql: fq.sql.Clone(), path: fq.path, } } // WithFollower tells the query-builder to eager-load the nodes that are connected to // the "follower" edge. The optional arguments are used to configure the query builder of the edge. func (fq *FollowQuery) WithFollower(opts ...func(*UserQuery)) *FollowQuery { query := (&UserClient{config: fq.config}).Query() for _, opt := range opts { opt(query) } fq.withFollower = query return fq } // WithFollowee tells the query-builder to eager-load the nodes that are connected to // the "followee" edge. The optional arguments are used to configure the query builder of the edge. func (fq *FollowQuery) WithFollowee(opts ...func(*UserQuery)) *FollowQuery { query := (&UserClient{config: fq.config}).Query() for _, opt := range opts { opt(query) } fq.withFollowee = query return fq } // 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 { // IsRemote bool `json:"isRemote,omitempty"` // Count int `json:"count,omitempty"` // } // // client.Follow.Query(). // GroupBy(follow.FieldIsRemote). // Aggregate(ent.Count()). // Scan(ctx, &v) func (fq *FollowQuery) GroupBy(field string, fields ...string) *FollowGroupBy { fq.ctx.Fields = append([]string{field}, fields...) grbuild := &FollowGroupBy{build: fq} grbuild.flds = &fq.ctx.Fields grbuild.label = follow.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 { // IsRemote bool `json:"isRemote,omitempty"` // } // // client.Follow.Query(). // Select(follow.FieldIsRemote). // Scan(ctx, &v) func (fq *FollowQuery) Select(fields ...string) *FollowSelect { fq.ctx.Fields = append(fq.ctx.Fields, fields...) sbuild := &FollowSelect{FollowQuery: fq} sbuild.label = follow.Label sbuild.flds, sbuild.scan = &fq.ctx.Fields, sbuild.Scan return sbuild } // Aggregate returns a FollowSelect configured with the given aggregations. func (fq *FollowQuery) Aggregate(fns ...AggregateFunc) *FollowSelect { return fq.Select().Aggregate(fns...) } func (fq *FollowQuery) prepareQuery(ctx context.Context) error { for _, inter := range fq.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, fq); err != nil { return err } } } for _, f := range fq.ctx.Fields { if !follow.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } } if fq.path != nil { prev, err := fq.path(ctx) if err != nil { return err } fq.sql = prev } return nil } func (fq *FollowQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Follow, error) { var ( nodes = []*Follow{} withFKs = fq.withFKs _spec = fq.querySpec() loadedTypes = [2]bool{ fq.withFollower != nil, fq.withFollowee != nil, } ) if fq.withFollower != nil || fq.withFollowee != nil { withFKs = true } if withFKs { _spec.Node.Columns = append(_spec.Node.Columns, follow.ForeignKeys...) } _spec.ScanValues = func(columns []string) ([]any, error) { return (*Follow).scanValues(nil, columns) } _spec.Assign = func(columns []string, values []any) error { node := &Follow{config: fq.config} nodes = append(nodes, node) node.Edges.loadedTypes = loadedTypes return node.assignValues(columns, values) } for i := range hooks { hooks[i](ctx, _spec) } if err := sqlgraph.QueryNodes(ctx, fq.driver, _spec); err != nil { return nil, err } if len(nodes) == 0 { return nodes, nil } if query := fq.withFollower; query != nil { if err := fq.loadFollower(ctx, query, nodes, nil, func(n *Follow, e *User) { n.Edges.Follower = e }); err != nil { return nil, err } } if query := fq.withFollowee; query != nil { if err := fq.loadFollowee(ctx, query, nodes, nil, func(n *Follow, e *User) { n.Edges.Followee = e }); err != nil { return nil, err } } return nodes, nil } func (fq *FollowQuery) loadFollower(ctx context.Context, query *UserQuery, nodes []*Follow, init func(*Follow), assign func(*Follow, *User)) error { ids := make([]uuid.UUID, 0, len(nodes)) nodeids := make(map[uuid.UUID][]*Follow) for i := range nodes { if nodes[i].follow_follower == nil { continue } fk := *nodes[i].follow_follower if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } if len(ids) == 0 { return nil } query.Where(user.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return fmt.Errorf(`unexpected foreign-key "follow_follower" returned %v`, n.ID) } for i := range nodes { assign(nodes[i], n) } } return nil } func (fq *FollowQuery) loadFollowee(ctx context.Context, query *UserQuery, nodes []*Follow, init func(*Follow), assign func(*Follow, *User)) error { ids := make([]uuid.UUID, 0, len(nodes)) nodeids := make(map[uuid.UUID][]*Follow) for i := range nodes { if nodes[i].follow_followee == nil { continue } fk := *nodes[i].follow_followee if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } if len(ids) == 0 { return nil } query.Where(user.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return fmt.Errorf(`unexpected foreign-key "follow_followee" returned %v`, n.ID) } for i := range nodes { assign(nodes[i], n) } } return nil } func (fq *FollowQuery) sqlCount(ctx context.Context) (int, error) { _spec := fq.querySpec() _spec.Node.Columns = fq.ctx.Fields if len(fq.ctx.Fields) > 0 { _spec.Unique = fq.ctx.Unique != nil && *fq.ctx.Unique } return sqlgraph.CountNodes(ctx, fq.driver, _spec) } func (fq *FollowQuery) querySpec() *sqlgraph.QuerySpec { _spec := sqlgraph.NewQuerySpec(follow.Table, follow.Columns, sqlgraph.NewFieldSpec(follow.FieldID, field.TypeUUID)) _spec.From = fq.sql if unique := fq.ctx.Unique; unique != nil { _spec.Unique = *unique } else if fq.path != nil { _spec.Unique = true } if fields := fq.ctx.Fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, follow.FieldID) for i := range fields { if fields[i] != follow.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, fields[i]) } } } if ps := fq.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if limit := fq.ctx.Limit; limit != nil { _spec.Limit = *limit } if offset := fq.ctx.Offset; offset != nil { _spec.Offset = *offset } if ps := fq.order; len(ps) > 0 { _spec.Order = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } return _spec } func (fq *FollowQuery) sqlQuery(ctx context.Context) *sql.Selector { builder := sql.Dialect(fq.driver.Dialect()) t1 := builder.Table(follow.Table) columns := fq.ctx.Fields if len(columns) == 0 { columns = follow.Columns } selector := builder.Select(t1.Columns(columns...)...).From(t1) if fq.sql != nil { selector = fq.sql selector.Select(selector.Columns(columns...)...) } if fq.ctx.Unique != nil && *fq.ctx.Unique { selector.Distinct() } for _, p := range fq.predicates { p(selector) } for _, p := range fq.order { p(selector) } if offset := fq.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 := fq.ctx.Limit; limit != nil { selector.Limit(*limit) } return selector } // FollowGroupBy is the group-by builder for Follow entities. type FollowGroupBy struct { selector build *FollowQuery } // Aggregate adds the given aggregation functions to the group-by query. func (fgb *FollowGroupBy) Aggregate(fns ...AggregateFunc) *FollowGroupBy { fgb.fns = append(fgb.fns, fns...) return fgb } // Scan applies the selector query and scans the result into the given value. func (fgb *FollowGroupBy) Scan(ctx context.Context, v any) error { ctx = setContextOp(ctx, fgb.build.ctx, "GroupBy") if err := fgb.build.prepareQuery(ctx); err != nil { return err } return scanWithInterceptors[*FollowQuery, *FollowGroupBy](ctx, fgb.build, fgb, fgb.build.inters, v) } func (fgb *FollowGroupBy) sqlScan(ctx context.Context, root *FollowQuery, v any) error { selector := root.sqlQuery(ctx).Select() aggregation := make([]string, 0, len(fgb.fns)) for _, fn := range fgb.fns { aggregation = append(aggregation, fn(selector)) } if len(selector.SelectedColumns()) == 0 { columns := make([]string, 0, len(*fgb.flds)+len(fgb.fns)) for _, f := range *fgb.flds { columns = append(columns, selector.C(f)) } columns = append(columns, aggregation...) selector.Select(columns...) } selector.GroupBy(selector.Columns(*fgb.flds...)...) if err := selector.Err(); err != nil { return err } rows := &sql.Rows{} query, args := selector.Query() if err := fgb.build.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } // FollowSelect is the builder for selecting fields of Follow entities. type FollowSelect struct { *FollowQuery selector } // Aggregate adds the given aggregation functions to the selector query. func (fs *FollowSelect) Aggregate(fns ...AggregateFunc) *FollowSelect { fs.fns = append(fs.fns, fns...) return fs } // Scan applies the selector query and scans the result into the given value. func (fs *FollowSelect) Scan(ctx context.Context, v any) error { ctx = setContextOp(ctx, fs.ctx, "Select") if err := fs.prepareQuery(ctx); err != nil { return err } return scanWithInterceptors[*FollowQuery, *FollowSelect](ctx, fs.FollowQuery, fs, fs.inters, v) } func (fs *FollowSelect) sqlScan(ctx context.Context, root *FollowQuery, v any) error { selector := root.sqlQuery(ctx) aggregation := make([]string, 0, len(fs.fns)) for _, fn := range fs.fns { aggregation = append(aggregation, fn(selector)) } switch n := len(*fs.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 := fs.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) }