// Code generated by entc, DO NOT EDIT. package ent import ( "context" "database/sql/driver" "errors" "fmt" "math" "code.icod.de/postfix/manager/ent/account" "code.icod.de/postfix/manager/ent/alias" "code.icod.de/postfix/manager/ent/domain" "code.icod.de/postfix/manager/ent/logentry" "code.icod.de/postfix/manager/ent/mailbox" "code.icod.de/postfix/manager/ent/predicate" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) // DomainQuery is the builder for querying Domain entities. type DomainQuery struct { config limit *int offset *int unique *bool order []OrderFunc fields []string predicates []predicate.Domain // eager-loading edges. withMailboxes *MailboxQuery withAliases *AliasQuery withLogs *LogentryQuery withAccounts *AccountQuery // intermediate query (i.e. traversal path). sql *sql.Selector path func(context.Context) (*sql.Selector, error) } // Where adds a new predicate for the DomainQuery builder. func (dq *DomainQuery) Where(ps ...predicate.Domain) *DomainQuery { dq.predicates = append(dq.predicates, ps...) return dq } // Limit adds a limit step to the query. func (dq *DomainQuery) Limit(limit int) *DomainQuery { dq.limit = &limit return dq } // Offset adds an offset step to the query. func (dq *DomainQuery) Offset(offset int) *DomainQuery { dq.offset = &offset return dq } // 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 (dq *DomainQuery) Unique(unique bool) *DomainQuery { dq.unique = &unique return dq } // Order adds an order step to the query. func (dq *DomainQuery) Order(o ...OrderFunc) *DomainQuery { dq.order = append(dq.order, o...) return dq } // QueryMailboxes chains the current query on the "mailboxes" edge. func (dq *DomainQuery) QueryMailboxes() *MailboxQuery { query := &MailboxQuery{config: dq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } selector := dq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(domain.Table, domain.FieldID, selector), sqlgraph.To(mailbox.Table, mailbox.FieldID), sqlgraph.Edge(sqlgraph.O2M, false, domain.MailboxesTable, domain.MailboxesColumn), ) fromU = sqlgraph.SetNeighbors(dq.driver.Dialect(), step) return fromU, nil } return query } // QueryAliases chains the current query on the "aliases" edge. func (dq *DomainQuery) QueryAliases() *AliasQuery { query := &AliasQuery{config: dq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } selector := dq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(domain.Table, domain.FieldID, selector), sqlgraph.To(alias.Table, alias.FieldID), sqlgraph.Edge(sqlgraph.O2M, false, domain.AliasesTable, domain.AliasesColumn), ) fromU = sqlgraph.SetNeighbors(dq.driver.Dialect(), step) return fromU, nil } return query } // QueryLogs chains the current query on the "logs" edge. func (dq *DomainQuery) QueryLogs() *LogentryQuery { query := &LogentryQuery{config: dq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } selector := dq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(domain.Table, domain.FieldID, selector), sqlgraph.To(logentry.Table, logentry.FieldID), sqlgraph.Edge(sqlgraph.O2M, false, domain.LogsTable, domain.LogsColumn), ) fromU = sqlgraph.SetNeighbors(dq.driver.Dialect(), step) return fromU, nil } return query } // QueryAccounts chains the current query on the "accounts" edge. func (dq *DomainQuery) QueryAccounts() *AccountQuery { query := &AccountQuery{config: dq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } selector := dq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(domain.Table, domain.FieldID, selector), sqlgraph.To(account.Table, account.FieldID), sqlgraph.Edge(sqlgraph.M2M, true, domain.AccountsTable, domain.AccountsPrimaryKey...), ) fromU = sqlgraph.SetNeighbors(dq.driver.Dialect(), step) return fromU, nil } return query } // First returns the first Domain entity from the query. // Returns a *NotFoundError when no Domain was found. func (dq *DomainQuery) First(ctx context.Context) (*Domain, error) { nodes, err := dq.Limit(1).All(ctx) if err != nil { return nil, err } if len(nodes) == 0 { return nil, &NotFoundError{domain.Label} } return nodes[0], nil } // FirstX is like First, but panics if an error occurs. func (dq *DomainQuery) FirstX(ctx context.Context) *Domain { node, err := dq.First(ctx) if err != nil && !IsNotFound(err) { panic(err) } return node } // FirstID returns the first Domain ID from the query. // Returns a *NotFoundError when no Domain ID was found. func (dq *DomainQuery) FirstID(ctx context.Context) (id int64, err error) { var ids []int64 if ids, err = dq.Limit(1).IDs(ctx); err != nil { return } if len(ids) == 0 { err = &NotFoundError{domain.Label} return } return ids[0], nil } // FirstIDX is like FirstID, but panics if an error occurs. func (dq *DomainQuery) FirstIDX(ctx context.Context) int64 { id, err := dq.FirstID(ctx) if err != nil && !IsNotFound(err) { panic(err) } return id } // Only returns a single Domain entity found by the query, ensuring it only returns one. // Returns a *NotSingularError when more than one Domain entity is found. // Returns a *NotFoundError when no Domain entities are found. func (dq *DomainQuery) Only(ctx context.Context) (*Domain, error) { nodes, err := dq.Limit(2).All(ctx) if err != nil { return nil, err } switch len(nodes) { case 1: return nodes[0], nil case 0: return nil, &NotFoundError{domain.Label} default: return nil, &NotSingularError{domain.Label} } } // OnlyX is like Only, but panics if an error occurs. func (dq *DomainQuery) OnlyX(ctx context.Context) *Domain { node, err := dq.Only(ctx) if err != nil { panic(err) } return node } // OnlyID is like Only, but returns the only Domain ID in the query. // Returns a *NotSingularError when more than one Domain ID is found. // Returns a *NotFoundError when no entities are found. func (dq *DomainQuery) OnlyID(ctx context.Context) (id int64, err error) { var ids []int64 if ids, err = dq.Limit(2).IDs(ctx); err != nil { return } switch len(ids) { case 1: id = ids[0] case 0: err = &NotFoundError{domain.Label} default: err = &NotSingularError{domain.Label} } return } // OnlyIDX is like OnlyID, but panics if an error occurs. func (dq *DomainQuery) OnlyIDX(ctx context.Context) int64 { id, err := dq.OnlyID(ctx) if err != nil { panic(err) } return id } // All executes the query and returns a list of Domains. func (dq *DomainQuery) All(ctx context.Context) ([]*Domain, error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } return dq.sqlAll(ctx) } // AllX is like All, but panics if an error occurs. func (dq *DomainQuery) AllX(ctx context.Context) []*Domain { nodes, err := dq.All(ctx) if err != nil { panic(err) } return nodes } // IDs executes the query and returns a list of Domain IDs. func (dq *DomainQuery) IDs(ctx context.Context) ([]int64, error) { var ids []int64 if err := dq.Select(domain.FieldID).Scan(ctx, &ids); err != nil { return nil, err } return ids, nil } // IDsX is like IDs, but panics if an error occurs. func (dq *DomainQuery) IDsX(ctx context.Context) []int64 { ids, err := dq.IDs(ctx) if err != nil { panic(err) } return ids } // Count returns the count of the given query. func (dq *DomainQuery) Count(ctx context.Context) (int, error) { if err := dq.prepareQuery(ctx); err != nil { return 0, err } return dq.sqlCount(ctx) } // CountX is like Count, but panics if an error occurs. func (dq *DomainQuery) CountX(ctx context.Context) int { count, err := dq.Count(ctx) if err != nil { panic(err) } return count } // Exist returns true if the query has elements in the graph. func (dq *DomainQuery) Exist(ctx context.Context) (bool, error) { if err := dq.prepareQuery(ctx); err != nil { return false, err } return dq.sqlExist(ctx) } // ExistX is like Exist, but panics if an error occurs. func (dq *DomainQuery) ExistX(ctx context.Context) bool { exist, err := dq.Exist(ctx) if err != nil { panic(err) } return exist } // Clone returns a duplicate of the DomainQuery builder, including all associated steps. It can be // used to prepare common query builders and use them differently after the clone is made. func (dq *DomainQuery) Clone() *DomainQuery { if dq == nil { return nil } return &DomainQuery{ config: dq.config, limit: dq.limit, offset: dq.offset, order: append([]OrderFunc{}, dq.order...), predicates: append([]predicate.Domain{}, dq.predicates...), withMailboxes: dq.withMailboxes.Clone(), withAliases: dq.withAliases.Clone(), withLogs: dq.withLogs.Clone(), withAccounts: dq.withAccounts.Clone(), // clone intermediate query. sql: dq.sql.Clone(), path: dq.path, unique: dq.unique, } } // WithMailboxes tells the query-builder to eager-load the nodes that are connected to // the "mailboxes" edge. The optional arguments are used to configure the query builder of the edge. func (dq *DomainQuery) WithMailboxes(opts ...func(*MailboxQuery)) *DomainQuery { query := &MailboxQuery{config: dq.config} for _, opt := range opts { opt(query) } dq.withMailboxes = query return dq } // WithAliases tells the query-builder to eager-load the nodes that are connected to // the "aliases" edge. The optional arguments are used to configure the query builder of the edge. func (dq *DomainQuery) WithAliases(opts ...func(*AliasQuery)) *DomainQuery { query := &AliasQuery{config: dq.config} for _, opt := range opts { opt(query) } dq.withAliases = query return dq } // WithLogs tells the query-builder to eager-load the nodes that are connected to // the "logs" edge. The optional arguments are used to configure the query builder of the edge. func (dq *DomainQuery) WithLogs(opts ...func(*LogentryQuery)) *DomainQuery { query := &LogentryQuery{config: dq.config} for _, opt := range opts { opt(query) } dq.withLogs = query return dq } // WithAccounts tells the query-builder to eager-load the nodes that are connected to // the "accounts" edge. The optional arguments are used to configure the query builder of the edge. func (dq *DomainQuery) WithAccounts(opts ...func(*AccountQuery)) *DomainQuery { query := &AccountQuery{config: dq.config} for _, opt := range opts { opt(query) } dq.withAccounts = query return dq } // 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 { // Created time.Time `json:"created,omitempty"` // Count int `json:"count,omitempty"` // } // // client.Domain.Query(). // GroupBy(domain.FieldCreated). // Aggregate(ent.Count()). // Scan(ctx, &v) // func (dq *DomainQuery) GroupBy(field string, fields ...string) *DomainGroupBy { group := &DomainGroupBy{config: dq.config} group.fields = append([]string{field}, fields...) group.path = func(ctx context.Context) (prev *sql.Selector, err error) { if err := dq.prepareQuery(ctx); err != nil { return nil, err } return dq.sqlQuery(ctx), nil } return group } // 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 { // Created time.Time `json:"created,omitempty"` // } // // client.Domain.Query(). // Select(domain.FieldCreated). // Scan(ctx, &v) // func (dq *DomainQuery) Select(fields ...string) *DomainSelect { dq.fields = append(dq.fields, fields...) return &DomainSelect{DomainQuery: dq} } func (dq *DomainQuery) prepareQuery(ctx context.Context) error { for _, f := range dq.fields { if !domain.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } } if dq.path != nil { prev, err := dq.path(ctx) if err != nil { return err } dq.sql = prev } return nil } func (dq *DomainQuery) sqlAll(ctx context.Context) ([]*Domain, error) { var ( nodes = []*Domain{} _spec = dq.querySpec() loadedTypes = [4]bool{ dq.withMailboxes != nil, dq.withAliases != nil, dq.withLogs != nil, dq.withAccounts != nil, } ) _spec.ScanValues = func(columns []string) ([]interface{}, error) { node := &Domain{config: dq.config} nodes = append(nodes, node) return node.scanValues(columns) } _spec.Assign = func(columns []string, 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(columns, values) } if err := sqlgraph.QueryNodes(ctx, dq.driver, _spec); err != nil { return nil, err } if len(nodes) == 0 { return nodes, nil } if query := dq.withMailboxes; query != nil { fks := make([]driver.Value, 0, len(nodes)) nodeids := make(map[int64]*Domain) for i := range nodes { fks = append(fks, nodes[i].ID) nodeids[nodes[i].ID] = nodes[i] nodes[i].Edges.Mailboxes = []*Mailbox{} } query.Where(predicate.Mailbox(func(s *sql.Selector) { s.Where(sql.InValues(domain.MailboxesColumn, fks...)) })) neighbors, err := query.All(ctx) if err != nil { return nil, err } for _, n := range neighbors { fk := n.DomainID node, ok := nodeids[fk] if !ok { return nil, fmt.Errorf(`unexpected foreign-key "domain_id" returned %v for node %v`, fk, n.ID) } node.Edges.Mailboxes = append(node.Edges.Mailboxes, n) } } if query := dq.withAliases; query != nil { fks := make([]driver.Value, 0, len(nodes)) nodeids := make(map[int64]*Domain) for i := range nodes { fks = append(fks, nodes[i].ID) nodeids[nodes[i].ID] = nodes[i] nodes[i].Edges.Aliases = []*Alias{} } query.Where(predicate.Alias(func(s *sql.Selector) { s.Where(sql.InValues(domain.AliasesColumn, fks...)) })) neighbors, err := query.All(ctx) if err != nil { return nil, err } for _, n := range neighbors { fk := n.DomainID node, ok := nodeids[fk] if !ok { return nil, fmt.Errorf(`unexpected foreign-key "domain_id" returned %v for node %v`, fk, n.ID) } node.Edges.Aliases = append(node.Edges.Aliases, n) } } if query := dq.withLogs; query != nil { fks := make([]driver.Value, 0, len(nodes)) nodeids := make(map[int64]*Domain) for i := range nodes { fks = append(fks, nodes[i].ID) nodeids[nodes[i].ID] = nodes[i] nodes[i].Edges.Logs = []*Logentry{} } query.Where(predicate.Logentry(func(s *sql.Selector) { s.Where(sql.InValues(domain.LogsColumn, fks...)) })) neighbors, err := query.All(ctx) if err != nil { return nil, err } for _, n := range neighbors { fk := n.DomainID node, ok := nodeids[fk] if !ok { return nil, fmt.Errorf(`unexpected foreign-key "domain_id" returned %v for node %v`, fk, n.ID) } node.Edges.Logs = append(node.Edges.Logs, n) } } if query := dq.withAccounts; query != nil { fks := make([]driver.Value, 0, len(nodes)) ids := make(map[int64]*Domain, len(nodes)) for _, node := range nodes { ids[node.ID] = node fks = append(fks, node.ID) node.Edges.Accounts = []*Account{} } var ( edgeids []int64 edges = make(map[int64][]*Domain) ) _spec := &sqlgraph.EdgeQuerySpec{ Edge: &sqlgraph.EdgeSpec{ Inverse: true, Table: domain.AccountsTable, Columns: domain.AccountsPrimaryKey, }, Predicate: func(s *sql.Selector) { s.Where(sql.InValues(domain.AccountsPrimaryKey[1], fks...)) }, ScanValues: func() [2]interface{} { return [2]interface{}{new(sql.NullInt64), new(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 := eout.Int64 inValue := ein.Int64 node, ok := ids[outValue] if !ok { return fmt.Errorf("unexpected node id in edges: %v", outValue) } if _, ok := edges[inValue]; !ok { edgeids = append(edgeids, inValue) } edges[inValue] = append(edges[inValue], node) return nil }, } if err := sqlgraph.QueryEdges(ctx, dq.driver, _spec); err != nil { return nil, fmt.Errorf(`query edges "accounts": %w`, err) } query.Where(account.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 "accounts" node returned %v`, n.ID) } for i := range nodes { nodes[i].Edges.Accounts = append(nodes[i].Edges.Accounts, n) } } } return nodes, nil } func (dq *DomainQuery) sqlCount(ctx context.Context) (int, error) { _spec := dq.querySpec() _spec.Node.Columns = dq.fields if len(dq.fields) > 0 { _spec.Unique = dq.unique != nil && *dq.unique } return sqlgraph.CountNodes(ctx, dq.driver, _spec) } func (dq *DomainQuery) sqlExist(ctx context.Context) (bool, error) { n, err := dq.sqlCount(ctx) if err != nil { return false, fmt.Errorf("ent: check existence: %w", err) } return n > 0, nil } func (dq *DomainQuery) querySpec() *sqlgraph.QuerySpec { _spec := &sqlgraph.QuerySpec{ Node: &sqlgraph.NodeSpec{ Table: domain.Table, Columns: domain.Columns, ID: &sqlgraph.FieldSpec{ Type: field.TypeInt64, Column: domain.FieldID, }, }, From: dq.sql, Unique: true, } if unique := dq.unique; unique != nil { _spec.Unique = *unique } if fields := dq.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, domain.FieldID) for i := range fields { if fields[i] != domain.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, fields[i]) } } } if ps := dq.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if limit := dq.limit; limit != nil { _spec.Limit = *limit } if offset := dq.offset; offset != nil { _spec.Offset = *offset } if ps := dq.order; len(ps) > 0 { _spec.Order = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } return _spec } func (dq *DomainQuery) sqlQuery(ctx context.Context) *sql.Selector { builder := sql.Dialect(dq.driver.Dialect()) t1 := builder.Table(domain.Table) columns := dq.fields if len(columns) == 0 { columns = domain.Columns } selector := builder.Select(t1.Columns(columns...)...).From(t1) if dq.sql != nil { selector = dq.sql selector.Select(selector.Columns(columns...)...) } if dq.unique != nil && *dq.unique { selector.Distinct() } for _, p := range dq.predicates { p(selector) } for _, p := range dq.order { p(selector) } if offset := dq.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 := dq.limit; limit != nil { selector.Limit(*limit) } return selector } // DomainGroupBy is the group-by builder for Domain entities. type DomainGroupBy struct { config fields []string fns []AggregateFunc // intermediate query (i.e. traversal path). sql *sql.Selector path func(context.Context) (*sql.Selector, error) } // Aggregate adds the given aggregation functions to the group-by query. func (dgb *DomainGroupBy) Aggregate(fns ...AggregateFunc) *DomainGroupBy { dgb.fns = append(dgb.fns, fns...) return dgb } // Scan applies the group-by query and scans the result into the given value. func (dgb *DomainGroupBy) Scan(ctx context.Context, v interface{}) error { query, err := dgb.path(ctx) if err != nil { return err } dgb.sql = query return dgb.sqlScan(ctx, v) } // ScanX is like Scan, but panics if an error occurs. func (dgb *DomainGroupBy) ScanX(ctx context.Context, v interface{}) { if err := dgb.Scan(ctx, v); err != nil { panic(err) } } // Strings returns list of strings from group-by. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Strings(ctx context.Context) ([]string, error) { if len(dgb.fields) > 1 { return nil, errors.New("ent: DomainGroupBy.Strings is not achievable when grouping more than 1 field") } var v []string if err := dgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // StringsX is like Strings, but panics if an error occurs. func (dgb *DomainGroupBy) StringsX(ctx context.Context) []string { v, err := dgb.Strings(ctx) if err != nil { panic(err) } return v } // String returns a single string from a group-by query. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) String(ctx context.Context) (_ string, err error) { var v []string if v, err = dgb.Strings(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainGroupBy.Strings returned %d results when one was expected", len(v)) } return } // StringX is like String, but panics if an error occurs. func (dgb *DomainGroupBy) StringX(ctx context.Context) string { v, err := dgb.String(ctx) if err != nil { panic(err) } return v } // Ints returns list of ints from group-by. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Ints(ctx context.Context) ([]int, error) { if len(dgb.fields) > 1 { return nil, errors.New("ent: DomainGroupBy.Ints is not achievable when grouping more than 1 field") } var v []int if err := dgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // IntsX is like Ints, but panics if an error occurs. func (dgb *DomainGroupBy) IntsX(ctx context.Context) []int { v, err := dgb.Ints(ctx) if err != nil { panic(err) } return v } // Int returns a single int from a group-by query. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Int(ctx context.Context) (_ int, err error) { var v []int if v, err = dgb.Ints(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainGroupBy.Ints returned %d results when one was expected", len(v)) } return } // IntX is like Int, but panics if an error occurs. func (dgb *DomainGroupBy) IntX(ctx context.Context) int { v, err := dgb.Int(ctx) if err != nil { panic(err) } return v } // Float64s returns list of float64s from group-by. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Float64s(ctx context.Context) ([]float64, error) { if len(dgb.fields) > 1 { return nil, errors.New("ent: DomainGroupBy.Float64s is not achievable when grouping more than 1 field") } var v []float64 if err := dgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // Float64sX is like Float64s, but panics if an error occurs. func (dgb *DomainGroupBy) Float64sX(ctx context.Context) []float64 { v, err := dgb.Float64s(ctx) if err != nil { panic(err) } return v } // Float64 returns a single float64 from a group-by query. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Float64(ctx context.Context) (_ float64, err error) { var v []float64 if v, err = dgb.Float64s(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainGroupBy.Float64s returned %d results when one was expected", len(v)) } return } // Float64X is like Float64, but panics if an error occurs. func (dgb *DomainGroupBy) Float64X(ctx context.Context) float64 { v, err := dgb.Float64(ctx) if err != nil { panic(err) } return v } // Bools returns list of bools from group-by. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Bools(ctx context.Context) ([]bool, error) { if len(dgb.fields) > 1 { return nil, errors.New("ent: DomainGroupBy.Bools is not achievable when grouping more than 1 field") } var v []bool if err := dgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // BoolsX is like Bools, but panics if an error occurs. func (dgb *DomainGroupBy) BoolsX(ctx context.Context) []bool { v, err := dgb.Bools(ctx) if err != nil { panic(err) } return v } // Bool returns a single bool from a group-by query. // It is only allowed when executing a group-by query with one field. func (dgb *DomainGroupBy) Bool(ctx context.Context) (_ bool, err error) { var v []bool if v, err = dgb.Bools(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainGroupBy.Bools returned %d results when one was expected", len(v)) } return } // BoolX is like Bool, but panics if an error occurs. func (dgb *DomainGroupBy) BoolX(ctx context.Context) bool { v, err := dgb.Bool(ctx) if err != nil { panic(err) } return v } func (dgb *DomainGroupBy) sqlScan(ctx context.Context, v interface{}) error { for _, f := range dgb.fields { if !domain.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)} } } selector := dgb.sqlQuery() if err := selector.Err(); err != nil { return err } rows := &sql.Rows{} query, args := selector.Query() if err := dgb.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } func (dgb *DomainGroupBy) sqlQuery() *sql.Selector { selector := dgb.sql.Select() aggregation := make([]string, 0, len(dgb.fns)) for _, fn := range dgb.fns { aggregation = append(aggregation, fn(selector)) } // If no columns were selected in a custom aggregation function, the default // selection is the fields used for "group-by", and the aggregation functions. if len(selector.SelectedColumns()) == 0 { columns := make([]string, 0, len(dgb.fields)+len(dgb.fns)) for _, f := range dgb.fields { columns = append(columns, selector.C(f)) } columns = append(columns, aggregation...) selector.Select(columns...) } return selector.GroupBy(selector.Columns(dgb.fields...)...) } // DomainSelect is the builder for selecting fields of Domain entities. type DomainSelect struct { *DomainQuery // intermediate query (i.e. traversal path). sql *sql.Selector } // Scan applies the selector query and scans the result into the given value. func (ds *DomainSelect) Scan(ctx context.Context, v interface{}) error { if err := ds.prepareQuery(ctx); err != nil { return err } ds.sql = ds.DomainQuery.sqlQuery(ctx) return ds.sqlScan(ctx, v) } // ScanX is like Scan, but panics if an error occurs. func (ds *DomainSelect) ScanX(ctx context.Context, v interface{}) { if err := ds.Scan(ctx, v); err != nil { panic(err) } } // Strings returns list of strings from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Strings(ctx context.Context) ([]string, error) { if len(ds.fields) > 1 { return nil, errors.New("ent: DomainSelect.Strings is not achievable when selecting more than 1 field") } var v []string if err := ds.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // StringsX is like Strings, but panics if an error occurs. func (ds *DomainSelect) StringsX(ctx context.Context) []string { v, err := ds.Strings(ctx) if err != nil { panic(err) } return v } // String returns a single string from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) String(ctx context.Context) (_ string, err error) { var v []string if v, err = ds.Strings(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainSelect.Strings returned %d results when one was expected", len(v)) } return } // StringX is like String, but panics if an error occurs. func (ds *DomainSelect) StringX(ctx context.Context) string { v, err := ds.String(ctx) if err != nil { panic(err) } return v } // Ints returns list of ints from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Ints(ctx context.Context) ([]int, error) { if len(ds.fields) > 1 { return nil, errors.New("ent: DomainSelect.Ints is not achievable when selecting more than 1 field") } var v []int if err := ds.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // IntsX is like Ints, but panics if an error occurs. func (ds *DomainSelect) IntsX(ctx context.Context) []int { v, err := ds.Ints(ctx) if err != nil { panic(err) } return v } // Int returns a single int from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Int(ctx context.Context) (_ int, err error) { var v []int if v, err = ds.Ints(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainSelect.Ints returned %d results when one was expected", len(v)) } return } // IntX is like Int, but panics if an error occurs. func (ds *DomainSelect) IntX(ctx context.Context) int { v, err := ds.Int(ctx) if err != nil { panic(err) } return v } // Float64s returns list of float64s from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Float64s(ctx context.Context) ([]float64, error) { if len(ds.fields) > 1 { return nil, errors.New("ent: DomainSelect.Float64s is not achievable when selecting more than 1 field") } var v []float64 if err := ds.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // Float64sX is like Float64s, but panics if an error occurs. func (ds *DomainSelect) Float64sX(ctx context.Context) []float64 { v, err := ds.Float64s(ctx) if err != nil { panic(err) } return v } // Float64 returns a single float64 from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Float64(ctx context.Context) (_ float64, err error) { var v []float64 if v, err = ds.Float64s(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainSelect.Float64s returned %d results when one was expected", len(v)) } return } // Float64X is like Float64, but panics if an error occurs. func (ds *DomainSelect) Float64X(ctx context.Context) float64 { v, err := ds.Float64(ctx) if err != nil { panic(err) } return v } // Bools returns list of bools from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Bools(ctx context.Context) ([]bool, error) { if len(ds.fields) > 1 { return nil, errors.New("ent: DomainSelect.Bools is not achievable when selecting more than 1 field") } var v []bool if err := ds.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // BoolsX is like Bools, but panics if an error occurs. func (ds *DomainSelect) BoolsX(ctx context.Context) []bool { v, err := ds.Bools(ctx) if err != nil { panic(err) } return v } // Bool returns a single bool from a selector. It is only allowed when selecting one field. func (ds *DomainSelect) Bool(ctx context.Context) (_ bool, err error) { var v []bool if v, err = ds.Bools(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{domain.Label} default: err = fmt.Errorf("ent: DomainSelect.Bools returned %d results when one was expected", len(v)) } return } // BoolX is like Bool, but panics if an error occurs. func (ds *DomainSelect) BoolX(ctx context.Context) bool { v, err := ds.Bool(ctx) if err != nil { panic(err) } return v } func (ds *DomainSelect) sqlScan(ctx context.Context, v interface{}) error { rows := &sql.Rows{} query, args := ds.sql.Query() if err := ds.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) }