|
@@ -0,0 +1,763 @@
|
|
|
+
|
|
|
+
|
|
|
+package ent
|
|
|
+
|
|
|
+import (
|
|
|
+ "context"
|
|
|
+ "database/sql/driver"
|
|
|
+ "errors"
|
|
|
+ "fmt"
|
|
|
+ "math"
|
|
|
+
|
|
|
+ "code.osinet.fr/fgm/entdemo/ent/car"
|
|
|
+ "code.osinet.fr/fgm/entdemo/ent/group"
|
|
|
+ "code.osinet.fr/fgm/entdemo/ent/predicate"
|
|
|
+ "code.osinet.fr/fgm/entdemo/ent/user"
|
|
|
+ "github.com/facebookincubator/ent/dialect/sql"
|
|
|
+ "github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
|
+ "github.com/facebookincubator/ent/schema/field"
|
|
|
+)
|
|
|
+
|
|
|
+
|
|
|
+type UserQuery struct {
|
|
|
+ config
|
|
|
+ limit *int
|
|
|
+ offset *int
|
|
|
+ order []Order
|
|
|
+ unique []string
|
|
|
+ predicates []predicate.User
|
|
|
+
|
|
|
+ withCars *CarQuery
|
|
|
+ withGroups *GroupQuery
|
|
|
+
|
|
|
+ sql *sql.Selector
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Where(ps ...predicate.User) *UserQuery {
|
|
|
+ uq.predicates = append(uq.predicates, ps...)
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Limit(limit int) *UserQuery {
|
|
|
+ uq.limit = &limit
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Offset(offset int) *UserQuery {
|
|
|
+ uq.offset = &offset
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Order(o ...Order) *UserQuery {
|
|
|
+ uq.order = append(uq.order, o...)
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) QueryCars() *CarQuery {
|
|
|
+ query := &CarQuery{config: uq.config}
|
|
|
+ step := sqlgraph.NewStep(
|
|
|
+ sqlgraph.From(user.Table, user.FieldID, uq.sqlQuery()),
|
|
|
+ sqlgraph.To(car.Table, car.FieldID),
|
|
|
+ sqlgraph.Edge(sqlgraph.O2M, false, user.CarsTable, user.CarsColumn),
|
|
|
+ )
|
|
|
+ query.sql = sqlgraph.SetNeighbors(uq.driver.Dialect(), step)
|
|
|
+ return query
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) QueryGroups() *GroupQuery {
|
|
|
+ query := &GroupQuery{config: uq.config}
|
|
|
+ step := sqlgraph.NewStep(
|
|
|
+ sqlgraph.From(user.Table, user.FieldID, uq.sqlQuery()),
|
|
|
+ sqlgraph.To(group.Table, group.FieldID),
|
|
|
+ sqlgraph.Edge(sqlgraph.M2M, true, user.GroupsTable, user.GroupsPrimaryKey...),
|
|
|
+ )
|
|
|
+ query.sql = sqlgraph.SetNeighbors(uq.driver.Dialect(), step)
|
|
|
+ return query
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) First(ctx context.Context) (*User, error) {
|
|
|
+ us, err := uq.Limit(1).All(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ if len(us) == 0 {
|
|
|
+ return nil, &NotFoundError{user.Label}
|
|
|
+ }
|
|
|
+ return us[0], nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) FirstX(ctx context.Context) *User {
|
|
|
+ u, err := uq.First(ctx)
|
|
|
+ if err != nil && !IsNotFound(err) {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
|
+ var ids []int
|
|
|
+ if ids, err = uq.Limit(1).IDs(ctx); err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(ids) == 0 {
|
|
|
+ err = &NotFoundError{user.Label}
|
|
|
+ return
|
|
|
+ }
|
|
|
+ return ids[0], nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) FirstXID(ctx context.Context) int {
|
|
|
+ id, err := uq.FirstID(ctx)
|
|
|
+ if err != nil && !IsNotFound(err) {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return id
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Only(ctx context.Context) (*User, error) {
|
|
|
+ us, err := uq.Limit(2).All(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ switch len(us) {
|
|
|
+ case 1:
|
|
|
+ return us[0], nil
|
|
|
+ case 0:
|
|
|
+ return nil, &NotFoundError{user.Label}
|
|
|
+ default:
|
|
|
+ return nil, &NotSingularError{user.Label}
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) OnlyX(ctx context.Context) *User {
|
|
|
+ u, err := uq.Only(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return u
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
|
+ var ids []int
|
|
|
+ if ids, err = uq.Limit(2).IDs(ctx); err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ switch len(ids) {
|
|
|
+ case 1:
|
|
|
+ id = ids[0]
|
|
|
+ case 0:
|
|
|
+ err = &NotFoundError{user.Label}
|
|
|
+ default:
|
|
|
+ err = &NotSingularError{user.Label}
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) OnlyXID(ctx context.Context) int {
|
|
|
+ id, err := uq.OnlyID(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return id
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) All(ctx context.Context) ([]*User, error) {
|
|
|
+ return uq.sqlAll(ctx)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) AllX(ctx context.Context) []*User {
|
|
|
+ us, err := uq.All(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return us
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) IDs(ctx context.Context) ([]int, error) {
|
|
|
+ var ids []int
|
|
|
+ if err := uq.Select(user.FieldID).Scan(ctx, &ids); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return ids, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) IDsX(ctx context.Context) []int {
|
|
|
+ ids, err := uq.IDs(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return ids
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Count(ctx context.Context) (int, error) {
|
|
|
+ return uq.sqlCount(ctx)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) CountX(ctx context.Context) int {
|
|
|
+ count, err := uq.Count(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return count
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Exist(ctx context.Context) (bool, error) {
|
|
|
+ return uq.sqlExist(ctx)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) ExistX(ctx context.Context) bool {
|
|
|
+ exist, err := uq.Exist(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return exist
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Clone() *UserQuery {
|
|
|
+ return &UserQuery{
|
|
|
+ config: uq.config,
|
|
|
+ limit: uq.limit,
|
|
|
+ offset: uq.offset,
|
|
|
+ order: append([]Order{}, uq.order...),
|
|
|
+ unique: append([]string{}, uq.unique...),
|
|
|
+ predicates: append([]predicate.User{}, uq.predicates...),
|
|
|
+
|
|
|
+ sql: uq.sql.Clone(),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) WithCars(opts ...func(*CarQuery)) *UserQuery {
|
|
|
+ query := &CarQuery{config: uq.config}
|
|
|
+ for _, opt := range opts {
|
|
|
+ opt(query)
|
|
|
+ }
|
|
|
+ uq.withCars = query
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) WithGroups(opts ...func(*GroupQuery)) *UserQuery {
|
|
|
+ query := &GroupQuery{config: uq.config}
|
|
|
+ for _, opt := range opts {
|
|
|
+ opt(query)
|
|
|
+ }
|
|
|
+ uq.withGroups = query
|
|
|
+ return uq
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) GroupBy(field string, fields ...string) *UserGroupBy {
|
|
|
+ group := &UserGroupBy{config: uq.config}
|
|
|
+ group.fields = append([]string{field}, fields...)
|
|
|
+ group.sql = uq.sqlQuery()
|
|
|
+ return group
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (uq *UserQuery) Select(field string, fields ...string) *UserSelect {
|
|
|
+ selector := &UserSelect{config: uq.config}
|
|
|
+ selector.fields = append([]string{field}, fields...)
|
|
|
+ selector.sql = uq.sqlQuery()
|
|
|
+ return selector
|
|
|
+}
|
|
|
+
|
|
|
+func (uq *UserQuery) sqlAll(ctx context.Context) ([]*User, error) {
|
|
|
+ var (
|
|
|
+ nodes = []*User{}
|
|
|
+ _spec = uq.querySpec()
|
|
|
+ loadedTypes = [2]bool{
|
|
|
+ uq.withCars != nil,
|
|
|
+ uq.withGroups != nil,
|
|
|
+ }
|
|
|
+ )
|
|
|
+ _spec.ScanValues = func() []interface{} {
|
|
|
+ node := &User{config: uq.config}
|
|
|
+ nodes = append(nodes, node)
|
|
|
+ values := node.scanValues()
|
|
|
+ return values
|
|
|
+ }
|
|
|
+ _spec.Assign = func(values ...interface{}) error {
|
|
|
+ if len(nodes) == 0 {
|
|
|
+ return fmt.Errorf("ent: Assign called without calling ScanValues")
|
|
|
+ }
|
|
|
+ node := nodes[len(nodes)-1]
|
|
|
+ node.Edges.loadedTypes = loadedTypes
|
|
|
+ return node.assignValues(values...)
|
|
|
+ }
|
|
|
+ if err := sqlgraph.QueryNodes(ctx, uq.driver, _spec); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ if len(nodes) == 0 {
|
|
|
+ return nodes, nil
|
|
|
+ }
|
|
|
+
|
|
|
+ if query := uq.withCars; query != nil {
|
|
|
+ fks := make([]driver.Value, 0, len(nodes))
|
|
|
+ nodeids := make(map[int]*User)
|
|
|
+ for i := range nodes {
|
|
|
+ fks = append(fks, nodes[i].ID)
|
|
|
+ nodeids[nodes[i].ID] = nodes[i]
|
|
|
+ }
|
|
|
+ query.withFKs = true
|
|
|
+ query.Where(predicate.Car(func(s *sql.Selector) {
|
|
|
+ s.Where(sql.InValues(user.CarsColumn, fks...))
|
|
|
+ }))
|
|
|
+ neighbors, err := query.All(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ for _, n := range neighbors {
|
|
|
+ fk := n.user_cars
|
|
|
+ if fk == nil {
|
|
|
+ return nil, fmt.Errorf(`foreign-key "user_cars" is nil for node %v`, n.ID)
|
|
|
+ }
|
|
|
+ node, ok := nodeids[*fk]
|
|
|
+ if !ok {
|
|
|
+ return nil, fmt.Errorf(`unexpected foreign-key "user_cars" returned %v for node %v`, *fk, n.ID)
|
|
|
+ }
|
|
|
+ node.Edges.Cars = append(node.Edges.Cars, n)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if query := uq.withGroups; query != nil {
|
|
|
+ fks := make([]driver.Value, 0, len(nodes))
|
|
|
+ ids := make(map[int]*User, len(nodes))
|
|
|
+ for _, node := range nodes {
|
|
|
+ ids[node.ID] = node
|
|
|
+ fks = append(fks, node.ID)
|
|
|
+ }
|
|
|
+ var (
|
|
|
+ edgeids []int
|
|
|
+ edges = make(map[int][]*User)
|
|
|
+ )
|
|
|
+ _spec := &sqlgraph.EdgeQuerySpec{
|
|
|
+ Edge: &sqlgraph.EdgeSpec{
|
|
|
+ Inverse: true,
|
|
|
+ Table: user.GroupsTable,
|
|
|
+ Columns: user.GroupsPrimaryKey,
|
|
|
+ },
|
|
|
+ Predicate: func(s *sql.Selector) {
|
|
|
+ s.Where(sql.InValues(user.GroupsPrimaryKey[1], fks...))
|
|
|
+ },
|
|
|
+
|
|
|
+ ScanValues: func() [2]interface{} {
|
|
|
+ return [2]interface{}{&sql.NullInt64{}, &sql.NullInt64{}}
|
|
|
+ },
|
|
|
+ Assign: func(out, in interface{}) error {
|
|
|
+ eout, ok := out.(*sql.NullInt64)
|
|
|
+ if !ok || eout == nil {
|
|
|
+ return fmt.Errorf("unexpected id value for edge-out")
|
|
|
+ }
|
|
|
+ ein, ok := in.(*sql.NullInt64)
|
|
|
+ if !ok || ein == nil {
|
|
|
+ return fmt.Errorf("unexpected id value for edge-in")
|
|
|
+ }
|
|
|
+ outValue := int(eout.Int64)
|
|
|
+ inValue := int(ein.Int64)
|
|
|
+ node, ok := ids[outValue]
|
|
|
+ if !ok {
|
|
|
+ return fmt.Errorf("unexpected node id in edges: %v", outValue)
|
|
|
+ }
|
|
|
+ edgeids = append(edgeids, inValue)
|
|
|
+ edges[inValue] = append(edges[inValue], node)
|
|
|
+ return nil
|
|
|
+ },
|
|
|
+ }
|
|
|
+ if err := sqlgraph.QueryEdges(ctx, uq.driver, _spec); err != nil {
|
|
|
+ return nil, fmt.Errorf(`query edges "groups": %v`, err)
|
|
|
+ }
|
|
|
+ query.Where(group.IDIn(edgeids...))
|
|
|
+ neighbors, err := query.All(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ for _, n := range neighbors {
|
|
|
+ nodes, ok := edges[n.ID]
|
|
|
+ if !ok {
|
|
|
+ return nil, fmt.Errorf(`unexpected "groups" node returned %v`, n.ID)
|
|
|
+ }
|
|
|
+ for i := range nodes {
|
|
|
+ nodes[i].Edges.Groups = append(nodes[i].Edges.Groups, n)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return nodes, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (uq *UserQuery) sqlCount(ctx context.Context) (int, error) {
|
|
|
+ _spec := uq.querySpec()
|
|
|
+ return sqlgraph.CountNodes(ctx, uq.driver, _spec)
|
|
|
+}
|
|
|
+
|
|
|
+func (uq *UserQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
|
+ n, err := uq.sqlCount(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return false, fmt.Errorf("ent: check existence: %v", err)
|
|
|
+ }
|
|
|
+ return n > 0, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (uq *UserQuery) querySpec() *sqlgraph.QuerySpec {
|
|
|
+ _spec := &sqlgraph.QuerySpec{
|
|
|
+ Node: &sqlgraph.NodeSpec{
|
|
|
+ Table: user.Table,
|
|
|
+ Columns: user.Columns,
|
|
|
+ ID: &sqlgraph.FieldSpec{
|
|
|
+ Type: field.TypeInt,
|
|
|
+ Column: user.FieldID,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ From: uq.sql,
|
|
|
+ Unique: true,
|
|
|
+ }
|
|
|
+ if ps := uq.predicates; len(ps) > 0 {
|
|
|
+ _spec.Predicate = func(selector *sql.Selector) {
|
|
|
+ for i := range ps {
|
|
|
+ ps[i](selector)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if limit := uq.limit; limit != nil {
|
|
|
+ _spec.Limit = *limit
|
|
|
+ }
|
|
|
+ if offset := uq.offset; offset != nil {
|
|
|
+ _spec.Offset = *offset
|
|
|
+ }
|
|
|
+ if ps := uq.order; len(ps) > 0 {
|
|
|
+ _spec.Order = func(selector *sql.Selector) {
|
|
|
+ for i := range ps {
|
|
|
+ ps[i](selector)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return _spec
|
|
|
+}
|
|
|
+
|
|
|
+func (uq *UserQuery) sqlQuery() *sql.Selector {
|
|
|
+ builder := sql.Dialect(uq.driver.Dialect())
|
|
|
+ t1 := builder.Table(user.Table)
|
|
|
+ selector := builder.Select(t1.Columns(user.Columns...)...).From(t1)
|
|
|
+ if uq.sql != nil {
|
|
|
+ selector = uq.sql
|
|
|
+ selector.Select(selector.Columns(user.Columns...)...)
|
|
|
+ }
|
|
|
+ for _, p := range uq.predicates {
|
|
|
+ p(selector)
|
|
|
+ }
|
|
|
+ for _, p := range uq.order {
|
|
|
+ p(selector)
|
|
|
+ }
|
|
|
+ if offset := uq.offset; offset != nil {
|
|
|
+
|
|
|
+
|
|
|
+ selector.Offset(*offset).Limit(math.MaxInt32)
|
|
|
+ }
|
|
|
+ if limit := uq.limit; limit != nil {
|
|
|
+ selector.Limit(*limit)
|
|
|
+ }
|
|
|
+ return selector
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type UserGroupBy struct {
|
|
|
+ config
|
|
|
+ fields []string
|
|
|
+ fns []Aggregate
|
|
|
+
|
|
|
+ sql *sql.Selector
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Aggregate(fns ...Aggregate) *UserGroupBy {
|
|
|
+ ugb.fns = append(ugb.fns, fns...)
|
|
|
+ return ugb
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
|
+ return ugb.sqlScan(ctx, v)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) ScanX(ctx context.Context, v interface{}) {
|
|
|
+ if err := ugb.Scan(ctx, v); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
|
+ if len(ugb.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserGroupBy.Strings is not achievable when grouping more than 1 field")
|
|
|
+ }
|
|
|
+ var v []string
|
|
|
+ if err := ugb.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) StringsX(ctx context.Context) []string {
|
|
|
+ v, err := ugb.Strings(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
|
+ if len(ugb.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserGroupBy.Ints is not achievable when grouping more than 1 field")
|
|
|
+ }
|
|
|
+ var v []int
|
|
|
+ if err := ugb.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) IntsX(ctx context.Context) []int {
|
|
|
+ v, err := ugb.Ints(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
|
+ if len(ugb.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserGroupBy.Float64s is not achievable when grouping more than 1 field")
|
|
|
+ }
|
|
|
+ var v []float64
|
|
|
+ if err := ugb.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
|
+ v, err := ugb.Float64s(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
|
+ if len(ugb.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserGroupBy.Bools is not achievable when grouping more than 1 field")
|
|
|
+ }
|
|
|
+ var v []bool
|
|
|
+ if err := ugb.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) BoolsX(ctx context.Context) []bool {
|
|
|
+ v, err := ugb.Bools(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
|
+ rows := &sql.Rows{}
|
|
|
+ query, args := ugb.sqlQuery().Query()
|
|
|
+ if err := ugb.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ defer rows.Close()
|
|
|
+ return sql.ScanSlice(rows, v)
|
|
|
+}
|
|
|
+
|
|
|
+func (ugb *UserGroupBy) sqlQuery() *sql.Selector {
|
|
|
+ selector := ugb.sql
|
|
|
+ columns := make([]string, 0, len(ugb.fields)+len(ugb.fns))
|
|
|
+ columns = append(columns, ugb.fields...)
|
|
|
+ for _, fn := range ugb.fns {
|
|
|
+ columns = append(columns, fn(selector))
|
|
|
+ }
|
|
|
+ return selector.Select(columns...).GroupBy(ugb.fields...)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+type UserSelect struct {
|
|
|
+ config
|
|
|
+ fields []string
|
|
|
+
|
|
|
+ sql *sql.Selector
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Scan(ctx context.Context, v interface{}) error {
|
|
|
+ return us.sqlScan(ctx, v)
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) ScanX(ctx context.Context, v interface{}) {
|
|
|
+ if err := us.Scan(ctx, v); err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Strings(ctx context.Context) ([]string, error) {
|
|
|
+ if len(us.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserSelect.Strings is not achievable when selecting more than 1 field")
|
|
|
+ }
|
|
|
+ var v []string
|
|
|
+ if err := us.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) StringsX(ctx context.Context) []string {
|
|
|
+ v, err := us.Strings(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Ints(ctx context.Context) ([]int, error) {
|
|
|
+ if len(us.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserSelect.Ints is not achievable when selecting more than 1 field")
|
|
|
+ }
|
|
|
+ var v []int
|
|
|
+ if err := us.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) IntsX(ctx context.Context) []int {
|
|
|
+ v, err := us.Ints(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
|
+ if len(us.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserSelect.Float64s is not achievable when selecting more than 1 field")
|
|
|
+ }
|
|
|
+ var v []float64
|
|
|
+ if err := us.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Float64sX(ctx context.Context) []float64 {
|
|
|
+ v, err := us.Float64s(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
|
+ if len(us.fields) > 1 {
|
|
|
+ return nil, errors.New("ent: UserSelect.Bools is not achievable when selecting more than 1 field")
|
|
|
+ }
|
|
|
+ var v []bool
|
|
|
+ if err := us.Scan(ctx, &v); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return v, nil
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+func (us *UserSelect) BoolsX(ctx context.Context) []bool {
|
|
|
+ v, err := us.Bools(ctx)
|
|
|
+ if err != nil {
|
|
|
+ panic(err)
|
|
|
+ }
|
|
|
+ return v
|
|
|
+}
|
|
|
+
|
|
|
+func (us *UserSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
|
+ rows := &sql.Rows{}
|
|
|
+ query, args := us.sqlQuery().Query()
|
|
|
+ if err := us.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ defer rows.Close()
|
|
|
+ return sql.ScanSlice(rows, v)
|
|
|
+}
|
|
|
+
|
|
|
+func (us *UserSelect) sqlQuery() sql.Querier {
|
|
|
+ selector := us.sql
|
|
|
+ selector.Select(selector.Columns(us.fields...)...)
|
|
|
+ return selector
|
|
|
+}
|