743 lines
21 KiB
Go
743 lines
21 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"database/sql/driver"
|
|
"fmt"
|
|
"math"
|
|
"portfolio/database/ent/predicate"
|
|
"portfolio/database/ent/project"
|
|
"portfolio/database/ent/team"
|
|
"portfolio/database/ent/user"
|
|
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// TeamQuery is the builder for querying Team entities.
|
|
type TeamQuery struct {
|
|
config
|
|
ctx *QueryContext
|
|
order []team.OrderOption
|
|
inters []Interceptor
|
|
predicates []predicate.Team
|
|
withProjects *ProjectQuery
|
|
withUsers *UserQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the TeamQuery builder.
|
|
func (tq *TeamQuery) Where(ps ...predicate.Team) *TeamQuery {
|
|
tq.predicates = append(tq.predicates, ps...)
|
|
return tq
|
|
}
|
|
|
|
// Limit the number of records to be returned by this query.
|
|
func (tq *TeamQuery) Limit(limit int) *TeamQuery {
|
|
tq.ctx.Limit = &limit
|
|
return tq
|
|
}
|
|
|
|
// Offset to start from.
|
|
func (tq *TeamQuery) Offset(offset int) *TeamQuery {
|
|
tq.ctx.Offset = &offset
|
|
return tq
|
|
}
|
|
|
|
// 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 (tq *TeamQuery) Unique(unique bool) *TeamQuery {
|
|
tq.ctx.Unique = &unique
|
|
return tq
|
|
}
|
|
|
|
// Order specifies how the records should be ordered.
|
|
func (tq *TeamQuery) Order(o ...team.OrderOption) *TeamQuery {
|
|
tq.order = append(tq.order, o...)
|
|
return tq
|
|
}
|
|
|
|
// QueryProjects chains the current query on the "projects" edge.
|
|
func (tq *TeamQuery) QueryProjects() *ProjectQuery {
|
|
query := (&ProjectClient{config: tq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := tq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := tq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(team.Table, team.FieldID, selector),
|
|
sqlgraph.To(project.Table, project.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2M, false, team.ProjectsTable, team.ProjectsPrimaryKey...),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(tq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// QueryUsers chains the current query on the "users" edge.
|
|
func (tq *TeamQuery) QueryUsers() *UserQuery {
|
|
query := (&UserClient{config: tq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := tq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := tq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(team.Table, team.FieldID, selector),
|
|
sqlgraph.To(user.Table, user.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2M, true, team.UsersTable, team.UsersPrimaryKey...),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(tq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first Team entity from the query.
|
|
// Returns a *NotFoundError when no Team was found.
|
|
func (tq *TeamQuery) First(ctx context.Context) (*Team, error) {
|
|
nodes, err := tq.Limit(1).All(setContextOp(ctx, tq.ctx, ent.OpQueryFirst))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{team.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (tq *TeamQuery) FirstX(ctx context.Context) *Team {
|
|
node, err := tq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Team ID from the query.
|
|
// Returns a *NotFoundError when no Team ID was found.
|
|
func (tq *TeamQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = tq.Limit(1).IDs(setContextOp(ctx, tq.ctx, ent.OpQueryFirstID)); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{team.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (tq *TeamQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := tq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Team entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one Team entity is found.
|
|
// Returns a *NotFoundError when no Team entities are found.
|
|
func (tq *TeamQuery) Only(ctx context.Context) (*Team, error) {
|
|
nodes, err := tq.Limit(2).All(setContextOp(ctx, tq.ctx, ent.OpQueryOnly))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{team.Label}
|
|
default:
|
|
return nil, &NotSingularError{team.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (tq *TeamQuery) OnlyX(ctx context.Context) *Team {
|
|
node, err := tq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Team ID in the query.
|
|
// Returns a *NotSingularError when more than one Team ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (tq *TeamQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = tq.Limit(2).IDs(setContextOp(ctx, tq.ctx, ent.OpQueryOnlyID)); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{team.Label}
|
|
default:
|
|
err = &NotSingularError{team.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (tq *TeamQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := tq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Teams.
|
|
func (tq *TeamQuery) All(ctx context.Context) ([]*Team, error) {
|
|
ctx = setContextOp(ctx, tq.ctx, ent.OpQueryAll)
|
|
if err := tq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
qr := querierAll[[]*Team, *TeamQuery]()
|
|
return withInterceptors[[]*Team](ctx, tq, qr, tq.inters)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (tq *TeamQuery) AllX(ctx context.Context) []*Team {
|
|
nodes, err := tq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Team IDs.
|
|
func (tq *TeamQuery) IDs(ctx context.Context) (ids []int, err error) {
|
|
if tq.ctx.Unique == nil && tq.path != nil {
|
|
tq.Unique(true)
|
|
}
|
|
ctx = setContextOp(ctx, tq.ctx, ent.OpQueryIDs)
|
|
if err = tq.Select(team.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (tq *TeamQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := tq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (tq *TeamQuery) Count(ctx context.Context) (int, error) {
|
|
ctx = setContextOp(ctx, tq.ctx, ent.OpQueryCount)
|
|
if err := tq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return withInterceptors[int](ctx, tq, querierCount[*TeamQuery](), tq.inters)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (tq *TeamQuery) CountX(ctx context.Context) int {
|
|
count, err := tq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (tq *TeamQuery) Exist(ctx context.Context) (bool, error) {
|
|
ctx = setContextOp(ctx, tq.ctx, ent.OpQueryExist)
|
|
switch _, err := tq.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 (tq *TeamQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := tq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the TeamQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (tq *TeamQuery) Clone() *TeamQuery {
|
|
if tq == nil {
|
|
return nil
|
|
}
|
|
return &TeamQuery{
|
|
config: tq.config,
|
|
ctx: tq.ctx.Clone(),
|
|
order: append([]team.OrderOption{}, tq.order...),
|
|
inters: append([]Interceptor{}, tq.inters...),
|
|
predicates: append([]predicate.Team{}, tq.predicates...),
|
|
withProjects: tq.withProjects.Clone(),
|
|
withUsers: tq.withUsers.Clone(),
|
|
// clone intermediate query.
|
|
sql: tq.sql.Clone(),
|
|
path: tq.path,
|
|
}
|
|
}
|
|
|
|
// WithProjects tells the query-builder to eager-load the nodes that are connected to
|
|
// the "projects" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (tq *TeamQuery) WithProjects(opts ...func(*ProjectQuery)) *TeamQuery {
|
|
query := (&ProjectClient{config: tq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
tq.withProjects = query
|
|
return tq
|
|
}
|
|
|
|
// WithUsers tells the query-builder to eager-load the nodes that are connected to
|
|
// the "users" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (tq *TeamQuery) WithUsers(opts ...func(*UserQuery)) *TeamQuery {
|
|
query := (&UserClient{config: tq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
tq.withUsers = query
|
|
return tq
|
|
}
|
|
|
|
// 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 {
|
|
// Name string `json:"name,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Team.Query().
|
|
// GroupBy(team.FieldName).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (tq *TeamQuery) GroupBy(field string, fields ...string) *TeamGroupBy {
|
|
tq.ctx.Fields = append([]string{field}, fields...)
|
|
grbuild := &TeamGroupBy{build: tq}
|
|
grbuild.flds = &tq.ctx.Fields
|
|
grbuild.label = team.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 {
|
|
// Name string `json:"name,omitempty"`
|
|
// }
|
|
//
|
|
// client.Team.Query().
|
|
// Select(team.FieldName).
|
|
// Scan(ctx, &v)
|
|
func (tq *TeamQuery) Select(fields ...string) *TeamSelect {
|
|
tq.ctx.Fields = append(tq.ctx.Fields, fields...)
|
|
sbuild := &TeamSelect{TeamQuery: tq}
|
|
sbuild.label = team.Label
|
|
sbuild.flds, sbuild.scan = &tq.ctx.Fields, sbuild.Scan
|
|
return sbuild
|
|
}
|
|
|
|
// Aggregate returns a TeamSelect configured with the given aggregations.
|
|
func (tq *TeamQuery) Aggregate(fns ...AggregateFunc) *TeamSelect {
|
|
return tq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (tq *TeamQuery) prepareQuery(ctx context.Context) error {
|
|
for _, inter := range tq.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, tq); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
for _, f := range tq.ctx.Fields {
|
|
if !team.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if tq.path != nil {
|
|
prev, err := tq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (tq *TeamQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Team, error) {
|
|
var (
|
|
nodes = []*Team{}
|
|
_spec = tq.querySpec()
|
|
loadedTypes = [2]bool{
|
|
tq.withProjects != nil,
|
|
tq.withUsers != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*Team).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &Team{config: tq.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, tq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := tq.withProjects; query != nil {
|
|
if err := tq.loadProjects(ctx, query, nodes,
|
|
func(n *Team) { n.Edges.Projects = []*Project{} },
|
|
func(n *Team, e *Project) { n.Edges.Projects = append(n.Edges.Projects, e) }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
if query := tq.withUsers; query != nil {
|
|
if err := tq.loadUsers(ctx, query, nodes,
|
|
func(n *Team) { n.Edges.Users = []*User{} },
|
|
func(n *Team, e *User) { n.Edges.Users = append(n.Edges.Users, e) }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (tq *TeamQuery) loadProjects(ctx context.Context, query *ProjectQuery, nodes []*Team, init func(*Team), assign func(*Team, *Project)) error {
|
|
edgeIDs := make([]driver.Value, len(nodes))
|
|
byID := make(map[int]*Team)
|
|
nids := make(map[int]map[*Team]struct{})
|
|
for i, node := range nodes {
|
|
edgeIDs[i] = node.ID
|
|
byID[node.ID] = node
|
|
if init != nil {
|
|
init(node)
|
|
}
|
|
}
|
|
query.Where(func(s *sql.Selector) {
|
|
joinT := sql.Table(team.ProjectsTable)
|
|
s.Join(joinT).On(s.C(project.FieldID), joinT.C(team.ProjectsPrimaryKey[1]))
|
|
s.Where(sql.InValues(joinT.C(team.ProjectsPrimaryKey[0]), edgeIDs...))
|
|
columns := s.SelectedColumns()
|
|
s.Select(joinT.C(team.ProjectsPrimaryKey[0]))
|
|
s.AppendSelect(columns...)
|
|
s.SetDistinct(false)
|
|
})
|
|
if err := query.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
|
|
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
|
|
assign := spec.Assign
|
|
values := spec.ScanValues
|
|
spec.ScanValues = func(columns []string) ([]any, error) {
|
|
values, err := values(columns[1:])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return append([]any{new(sql.NullInt64)}, values...), nil
|
|
}
|
|
spec.Assign = func(columns []string, values []any) error {
|
|
outValue := int(values[0].(*sql.NullInt64).Int64)
|
|
inValue := int(values[1].(*sql.NullInt64).Int64)
|
|
if nids[inValue] == nil {
|
|
nids[inValue] = map[*Team]struct{}{byID[outValue]: {}}
|
|
return assign(columns[1:], values[1:])
|
|
}
|
|
nids[inValue][byID[outValue]] = struct{}{}
|
|
return nil
|
|
}
|
|
})
|
|
})
|
|
neighbors, err := withInterceptors[[]*Project](ctx, query, qr, query.inters)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
nodes, ok := nids[n.ID]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected "projects" node returned %v`, n.ID)
|
|
}
|
|
for kn := range nodes {
|
|
assign(kn, n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
func (tq *TeamQuery) loadUsers(ctx context.Context, query *UserQuery, nodes []*Team, init func(*Team), assign func(*Team, *User)) error {
|
|
edgeIDs := make([]driver.Value, len(nodes))
|
|
byID := make(map[int]*Team)
|
|
nids := make(map[int]map[*Team]struct{})
|
|
for i, node := range nodes {
|
|
edgeIDs[i] = node.ID
|
|
byID[node.ID] = node
|
|
if init != nil {
|
|
init(node)
|
|
}
|
|
}
|
|
query.Where(func(s *sql.Selector) {
|
|
joinT := sql.Table(team.UsersTable)
|
|
s.Join(joinT).On(s.C(user.FieldID), joinT.C(team.UsersPrimaryKey[0]))
|
|
s.Where(sql.InValues(joinT.C(team.UsersPrimaryKey[1]), edgeIDs...))
|
|
columns := s.SelectedColumns()
|
|
s.Select(joinT.C(team.UsersPrimaryKey[1]))
|
|
s.AppendSelect(columns...)
|
|
s.SetDistinct(false)
|
|
})
|
|
if err := query.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
qr := QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
|
|
return query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) {
|
|
assign := spec.Assign
|
|
values := spec.ScanValues
|
|
spec.ScanValues = func(columns []string) ([]any, error) {
|
|
values, err := values(columns[1:])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return append([]any{new(sql.NullInt64)}, values...), nil
|
|
}
|
|
spec.Assign = func(columns []string, values []any) error {
|
|
outValue := int(values[0].(*sql.NullInt64).Int64)
|
|
inValue := int(values[1].(*sql.NullInt64).Int64)
|
|
if nids[inValue] == nil {
|
|
nids[inValue] = map[*Team]struct{}{byID[outValue]: {}}
|
|
return assign(columns[1:], values[1:])
|
|
}
|
|
nids[inValue][byID[outValue]] = struct{}{}
|
|
return nil
|
|
}
|
|
})
|
|
})
|
|
neighbors, err := withInterceptors[[]*User](ctx, query, qr, query.inters)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
nodes, ok := nids[n.ID]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected "users" node returned %v`, n.ID)
|
|
}
|
|
for kn := range nodes {
|
|
assign(kn, n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (tq *TeamQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := tq.querySpec()
|
|
_spec.Node.Columns = tq.ctx.Fields
|
|
if len(tq.ctx.Fields) > 0 {
|
|
_spec.Unique = tq.ctx.Unique != nil && *tq.ctx.Unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, tq.driver, _spec)
|
|
}
|
|
|
|
func (tq *TeamQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := sqlgraph.NewQuerySpec(team.Table, team.Columns, sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt))
|
|
_spec.From = tq.sql
|
|
if unique := tq.ctx.Unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
} else if tq.path != nil {
|
|
_spec.Unique = true
|
|
}
|
|
if fields := tq.ctx.Fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, team.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != team.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
if ps := tq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := tq.ctx.Limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := tq.ctx.Offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := tq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (tq *TeamQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(tq.driver.Dialect())
|
|
t1 := builder.Table(team.Table)
|
|
columns := tq.ctx.Fields
|
|
if len(columns) == 0 {
|
|
columns = team.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if tq.sql != nil {
|
|
selector = tq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if tq.ctx.Unique != nil && *tq.ctx.Unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, p := range tq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range tq.order {
|
|
p(selector)
|
|
}
|
|
if offset := tq.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 := tq.ctx.Limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// TeamGroupBy is the group-by builder for Team entities.
|
|
type TeamGroupBy struct {
|
|
selector
|
|
build *TeamQuery
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (tgb *TeamGroupBy) Aggregate(fns ...AggregateFunc) *TeamGroupBy {
|
|
tgb.fns = append(tgb.fns, fns...)
|
|
return tgb
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (tgb *TeamGroupBy) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, tgb.build.ctx, ent.OpQueryGroupBy)
|
|
if err := tgb.build.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*TeamQuery, *TeamGroupBy](ctx, tgb.build, tgb, tgb.build.inters, v)
|
|
}
|
|
|
|
func (tgb *TeamGroupBy) sqlScan(ctx context.Context, root *TeamQuery, v any) error {
|
|
selector := root.sqlQuery(ctx).Select()
|
|
aggregation := make([]string, 0, len(tgb.fns))
|
|
for _, fn := range tgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(*tgb.flds)+len(tgb.fns))
|
|
for _, f := range *tgb.flds {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
selector.GroupBy(selector.Columns(*tgb.flds...)...)
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := tgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// TeamSelect is the builder for selecting fields of Team entities.
|
|
type TeamSelect struct {
|
|
*TeamQuery
|
|
selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (ts *TeamSelect) Aggregate(fns ...AggregateFunc) *TeamSelect {
|
|
ts.fns = append(ts.fns, fns...)
|
|
return ts
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (ts *TeamSelect) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, ts.ctx, ent.OpQuerySelect)
|
|
if err := ts.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*TeamQuery, *TeamSelect](ctx, ts.TeamQuery, ts, ts.inters, v)
|
|
}
|
|
|
|
func (ts *TeamSelect) sqlScan(ctx context.Context, root *TeamQuery, v any) error {
|
|
selector := root.sqlQuery(ctx)
|
|
aggregation := make([]string, 0, len(ts.fns))
|
|
for _, fn := range ts.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
switch n := len(*ts.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 := ts.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|