// Code generated by entc, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "math" "code.icod.de/postfix/manager/ent/account" "code.icod.de/postfix/manager/ent/domain" "code.icod.de/postfix/manager/ent/logentry" "code.icod.de/postfix/manager/ent/predicate" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" ) // LogentryQuery is the builder for querying Logentry entities. type LogentryQuery struct { config limit *int offset *int unique *bool order []OrderFunc fields []string predicates []predicate.Logentry // eager-loading edges. withAccount *AccountQuery withDomain *DomainQuery // intermediate query (i.e. traversal path). sql *sql.Selector path func(context.Context) (*sql.Selector, error) } // Where adds a new predicate for the LogentryQuery builder. func (lq *LogentryQuery) Where(ps ...predicate.Logentry) *LogentryQuery { lq.predicates = append(lq.predicates, ps...) return lq } // Limit adds a limit step to the query. func (lq *LogentryQuery) Limit(limit int) *LogentryQuery { lq.limit = &limit return lq } // Offset adds an offset step to the query. func (lq *LogentryQuery) Offset(offset int) *LogentryQuery { lq.offset = &offset return lq } // 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 (lq *LogentryQuery) Unique(unique bool) *LogentryQuery { lq.unique = &unique return lq } // Order adds an order step to the query. func (lq *LogentryQuery) Order(o ...OrderFunc) *LogentryQuery { lq.order = append(lq.order, o...) return lq } // QueryAccount chains the current query on the "account" edge. func (lq *LogentryQuery) QueryAccount() *AccountQuery { query := &AccountQuery{config: lq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := lq.prepareQuery(ctx); err != nil { return nil, err } selector := lq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(logentry.Table, logentry.FieldID, selector), sqlgraph.To(account.Table, account.FieldID), sqlgraph.Edge(sqlgraph.M2O, true, logentry.AccountTable, logentry.AccountColumn), ) fromU = sqlgraph.SetNeighbors(lq.driver.Dialect(), step) return fromU, nil } return query } // QueryDomain chains the current query on the "domain" edge. func (lq *LogentryQuery) QueryDomain() *DomainQuery { query := &DomainQuery{config: lq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := lq.prepareQuery(ctx); err != nil { return nil, err } selector := lq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(logentry.Table, logentry.FieldID, selector), sqlgraph.To(domain.Table, domain.FieldID), sqlgraph.Edge(sqlgraph.M2O, true, logentry.DomainTable, logentry.DomainColumn), ) fromU = sqlgraph.SetNeighbors(lq.driver.Dialect(), step) return fromU, nil } return query } // First returns the first Logentry entity from the query. // Returns a *NotFoundError when no Logentry was found. func (lq *LogentryQuery) First(ctx context.Context) (*Logentry, error) { nodes, err := lq.Limit(1).All(ctx) if err != nil { return nil, err } if len(nodes) == 0 { return nil, &NotFoundError{logentry.Label} } return nodes[0], nil } // FirstX is like First, but panics if an error occurs. func (lq *LogentryQuery) FirstX(ctx context.Context) *Logentry { node, err := lq.First(ctx) if err != nil && !IsNotFound(err) { panic(err) } return node } // FirstID returns the first Logentry ID from the query. // Returns a *NotFoundError when no Logentry ID was found. func (lq *LogentryQuery) FirstID(ctx context.Context) (id int64, err error) { var ids []int64 if ids, err = lq.Limit(1).IDs(ctx); err != nil { return } if len(ids) == 0 { err = &NotFoundError{logentry.Label} return } return ids[0], nil } // FirstIDX is like FirstID, but panics if an error occurs. func (lq *LogentryQuery) FirstIDX(ctx context.Context) int64 { id, err := lq.FirstID(ctx) if err != nil && !IsNotFound(err) { panic(err) } return id } // Only returns a single Logentry entity found by the query, ensuring it only returns one. // Returns a *NotSingularError when more than one Logentry entity is found. // Returns a *NotFoundError when no Logentry entities are found. func (lq *LogentryQuery) Only(ctx context.Context) (*Logentry, error) { nodes, err := lq.Limit(2).All(ctx) if err != nil { return nil, err } switch len(nodes) { case 1: return nodes[0], nil case 0: return nil, &NotFoundError{logentry.Label} default: return nil, &NotSingularError{logentry.Label} } } // OnlyX is like Only, but panics if an error occurs. func (lq *LogentryQuery) OnlyX(ctx context.Context) *Logentry { node, err := lq.Only(ctx) if err != nil { panic(err) } return node } // OnlyID is like Only, but returns the only Logentry ID in the query. // Returns a *NotSingularError when more than one Logentry ID is found. // Returns a *NotFoundError when no entities are found. func (lq *LogentryQuery) OnlyID(ctx context.Context) (id int64, err error) { var ids []int64 if ids, err = lq.Limit(2).IDs(ctx); err != nil { return } switch len(ids) { case 1: id = ids[0] case 0: err = &NotFoundError{logentry.Label} default: err = &NotSingularError{logentry.Label} } return } // OnlyIDX is like OnlyID, but panics if an error occurs. func (lq *LogentryQuery) OnlyIDX(ctx context.Context) int64 { id, err := lq.OnlyID(ctx) if err != nil { panic(err) } return id } // All executes the query and returns a list of Logentries. func (lq *LogentryQuery) All(ctx context.Context) ([]*Logentry, error) { if err := lq.prepareQuery(ctx); err != nil { return nil, err } return lq.sqlAll(ctx) } // AllX is like All, but panics if an error occurs. func (lq *LogentryQuery) AllX(ctx context.Context) []*Logentry { nodes, err := lq.All(ctx) if err != nil { panic(err) } return nodes } // IDs executes the query and returns a list of Logentry IDs. func (lq *LogentryQuery) IDs(ctx context.Context) ([]int64, error) { var ids []int64 if err := lq.Select(logentry.FieldID).Scan(ctx, &ids); err != nil { return nil, err } return ids, nil } // IDsX is like IDs, but panics if an error occurs. func (lq *LogentryQuery) IDsX(ctx context.Context) []int64 { ids, err := lq.IDs(ctx) if err != nil { panic(err) } return ids } // Count returns the count of the given query. func (lq *LogentryQuery) Count(ctx context.Context) (int, error) { if err := lq.prepareQuery(ctx); err != nil { return 0, err } return lq.sqlCount(ctx) } // CountX is like Count, but panics if an error occurs. func (lq *LogentryQuery) CountX(ctx context.Context) int { count, err := lq.Count(ctx) if err != nil { panic(err) } return count } // Exist returns true if the query has elements in the graph. func (lq *LogentryQuery) Exist(ctx context.Context) (bool, error) { if err := lq.prepareQuery(ctx); err != nil { return false, err } return lq.sqlExist(ctx) } // ExistX is like Exist, but panics if an error occurs. func (lq *LogentryQuery) ExistX(ctx context.Context) bool { exist, err := lq.Exist(ctx) if err != nil { panic(err) } return exist } // Clone returns a duplicate of the LogentryQuery builder, including all associated steps. It can be // used to prepare common query builders and use them differently after the clone is made. func (lq *LogentryQuery) Clone() *LogentryQuery { if lq == nil { return nil } return &LogentryQuery{ config: lq.config, limit: lq.limit, offset: lq.offset, order: append([]OrderFunc{}, lq.order...), predicates: append([]predicate.Logentry{}, lq.predicates...), withAccount: lq.withAccount.Clone(), withDomain: lq.withDomain.Clone(), // clone intermediate query. sql: lq.sql.Clone(), path: lq.path, unique: lq.unique, } } // WithAccount tells the query-builder to eager-load the nodes that are connected to // the "account" edge. The optional arguments are used to configure the query builder of the edge. func (lq *LogentryQuery) WithAccount(opts ...func(*AccountQuery)) *LogentryQuery { query := &AccountQuery{config: lq.config} for _, opt := range opts { opt(query) } lq.withAccount = query return lq } // WithDomain tells the query-builder to eager-load the nodes that are connected to // the "domain" edge. The optional arguments are used to configure the query builder of the edge. func (lq *LogentryQuery) WithDomain(opts ...func(*DomainQuery)) *LogentryQuery { query := &DomainQuery{config: lq.config} for _, opt := range opts { opt(query) } lq.withDomain = query return lq } // 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 { // Timestamp time.Time `json:"timestamp,omitempty"` // Count int `json:"count,omitempty"` // } // // client.Logentry.Query(). // GroupBy(logentry.FieldTimestamp). // Aggregate(ent.Count()). // Scan(ctx, &v) // func (lq *LogentryQuery) GroupBy(field string, fields ...string) *LogentryGroupBy { group := &LogentryGroupBy{config: lq.config} group.fields = append([]string{field}, fields...) group.path = func(ctx context.Context) (prev *sql.Selector, err error) { if err := lq.prepareQuery(ctx); err != nil { return nil, err } return lq.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 { // Timestamp time.Time `json:"timestamp,omitempty"` // } // // client.Logentry.Query(). // Select(logentry.FieldTimestamp). // Scan(ctx, &v) // func (lq *LogentryQuery) Select(fields ...string) *LogentrySelect { lq.fields = append(lq.fields, fields...) return &LogentrySelect{LogentryQuery: lq} } func (lq *LogentryQuery) prepareQuery(ctx context.Context) error { for _, f := range lq.fields { if !logentry.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } } if lq.path != nil { prev, err := lq.path(ctx) if err != nil { return err } lq.sql = prev } return nil } func (lq *LogentryQuery) sqlAll(ctx context.Context) ([]*Logentry, error) { var ( nodes = []*Logentry{} _spec = lq.querySpec() loadedTypes = [2]bool{ lq.withAccount != nil, lq.withDomain != nil, } ) _spec.ScanValues = func(columns []string) ([]interface{}, error) { node := &Logentry{config: lq.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, lq.driver, _spec); err != nil { return nil, err } if len(nodes) == 0 { return nodes, nil } if query := lq.withAccount; query != nil { ids := make([]int64, 0, len(nodes)) nodeids := make(map[int64][]*Logentry) for i := range nodes { fk := nodes[i].AccountID if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } query.Where(account.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return nil, err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return nil, fmt.Errorf(`unexpected foreign-key "account_id" returned %v`, n.ID) } for i := range nodes { nodes[i].Edges.Account = n } } } if query := lq.withDomain; query != nil { ids := make([]int64, 0, len(nodes)) nodeids := make(map[int64][]*Logentry) for i := range nodes { fk := nodes[i].DomainID if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } query.Where(domain.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return nil, err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return nil, fmt.Errorf(`unexpected foreign-key "domain_id" returned %v`, n.ID) } for i := range nodes { nodes[i].Edges.Domain = n } } } return nodes, nil } func (lq *LogentryQuery) sqlCount(ctx context.Context) (int, error) { _spec := lq.querySpec() _spec.Node.Columns = lq.fields if len(lq.fields) > 0 { _spec.Unique = lq.unique != nil && *lq.unique } return sqlgraph.CountNodes(ctx, lq.driver, _spec) } func (lq *LogentryQuery) sqlExist(ctx context.Context) (bool, error) { n, err := lq.sqlCount(ctx) if err != nil { return false, fmt.Errorf("ent: check existence: %w", err) } return n > 0, nil } func (lq *LogentryQuery) querySpec() *sqlgraph.QuerySpec { _spec := &sqlgraph.QuerySpec{ Node: &sqlgraph.NodeSpec{ Table: logentry.Table, Columns: logentry.Columns, ID: &sqlgraph.FieldSpec{ Type: field.TypeInt64, Column: logentry.FieldID, }, }, From: lq.sql, Unique: true, } if unique := lq.unique; unique != nil { _spec.Unique = *unique } if fields := lq.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, logentry.FieldID) for i := range fields { if fields[i] != logentry.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, fields[i]) } } } if ps := lq.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if limit := lq.limit; limit != nil { _spec.Limit = *limit } if offset := lq.offset; offset != nil { _spec.Offset = *offset } if ps := lq.order; len(ps) > 0 { _spec.Order = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } return _spec } func (lq *LogentryQuery) sqlQuery(ctx context.Context) *sql.Selector { builder := sql.Dialect(lq.driver.Dialect()) t1 := builder.Table(logentry.Table) columns := lq.fields if len(columns) == 0 { columns = logentry.Columns } selector := builder.Select(t1.Columns(columns...)...).From(t1) if lq.sql != nil { selector = lq.sql selector.Select(selector.Columns(columns...)...) } if lq.unique != nil && *lq.unique { selector.Distinct() } for _, p := range lq.predicates { p(selector) } for _, p := range lq.order { p(selector) } if offset := lq.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 := lq.limit; limit != nil { selector.Limit(*limit) } return selector } // LogentryGroupBy is the group-by builder for Logentry entities. type LogentryGroupBy 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 (lgb *LogentryGroupBy) Aggregate(fns ...AggregateFunc) *LogentryGroupBy { lgb.fns = append(lgb.fns, fns...) return lgb } // Scan applies the group-by query and scans the result into the given value. func (lgb *LogentryGroupBy) Scan(ctx context.Context, v interface{}) error { query, err := lgb.path(ctx) if err != nil { return err } lgb.sql = query return lgb.sqlScan(ctx, v) } // ScanX is like Scan, but panics if an error occurs. func (lgb *LogentryGroupBy) ScanX(ctx context.Context, v interface{}) { if err := lgb.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 (lgb *LogentryGroupBy) Strings(ctx context.Context) ([]string, error) { if len(lgb.fields) > 1 { return nil, errors.New("ent: LogentryGroupBy.Strings is not achievable when grouping more than 1 field") } var v []string if err := lgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // StringsX is like Strings, but panics if an error occurs. func (lgb *LogentryGroupBy) StringsX(ctx context.Context) []string { v, err := lgb.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 (lgb *LogentryGroupBy) String(ctx context.Context) (_ string, err error) { var v []string if v, err = lgb.Strings(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentryGroupBy.Strings returned %d results when one was expected", len(v)) } return } // StringX is like String, but panics if an error occurs. func (lgb *LogentryGroupBy) StringX(ctx context.Context) string { v, err := lgb.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 (lgb *LogentryGroupBy) Ints(ctx context.Context) ([]int, error) { if len(lgb.fields) > 1 { return nil, errors.New("ent: LogentryGroupBy.Ints is not achievable when grouping more than 1 field") } var v []int if err := lgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // IntsX is like Ints, but panics if an error occurs. func (lgb *LogentryGroupBy) IntsX(ctx context.Context) []int { v, err := lgb.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 (lgb *LogentryGroupBy) Int(ctx context.Context) (_ int, err error) { var v []int if v, err = lgb.Ints(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentryGroupBy.Ints returned %d results when one was expected", len(v)) } return } // IntX is like Int, but panics if an error occurs. func (lgb *LogentryGroupBy) IntX(ctx context.Context) int { v, err := lgb.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 (lgb *LogentryGroupBy) Float64s(ctx context.Context) ([]float64, error) { if len(lgb.fields) > 1 { return nil, errors.New("ent: LogentryGroupBy.Float64s is not achievable when grouping more than 1 field") } var v []float64 if err := lgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // Float64sX is like Float64s, but panics if an error occurs. func (lgb *LogentryGroupBy) Float64sX(ctx context.Context) []float64 { v, err := lgb.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 (lgb *LogentryGroupBy) Float64(ctx context.Context) (_ float64, err error) { var v []float64 if v, err = lgb.Float64s(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentryGroupBy.Float64s returned %d results when one was expected", len(v)) } return } // Float64X is like Float64, but panics if an error occurs. func (lgb *LogentryGroupBy) Float64X(ctx context.Context) float64 { v, err := lgb.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 (lgb *LogentryGroupBy) Bools(ctx context.Context) ([]bool, error) { if len(lgb.fields) > 1 { return nil, errors.New("ent: LogentryGroupBy.Bools is not achievable when grouping more than 1 field") } var v []bool if err := lgb.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // BoolsX is like Bools, but panics if an error occurs. func (lgb *LogentryGroupBy) BoolsX(ctx context.Context) []bool { v, err := lgb.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 (lgb *LogentryGroupBy) Bool(ctx context.Context) (_ bool, err error) { var v []bool if v, err = lgb.Bools(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentryGroupBy.Bools returned %d results when one was expected", len(v)) } return } // BoolX is like Bool, but panics if an error occurs. func (lgb *LogentryGroupBy) BoolX(ctx context.Context) bool { v, err := lgb.Bool(ctx) if err != nil { panic(err) } return v } func (lgb *LogentryGroupBy) sqlScan(ctx context.Context, v interface{}) error { for _, f := range lgb.fields { if !logentry.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)} } } selector := lgb.sqlQuery() if err := selector.Err(); err != nil { return err } rows := &sql.Rows{} query, args := selector.Query() if err := lgb.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } func (lgb *LogentryGroupBy) sqlQuery() *sql.Selector { selector := lgb.sql.Select() aggregation := make([]string, 0, len(lgb.fns)) for _, fn := range lgb.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(lgb.fields)+len(lgb.fns)) for _, f := range lgb.fields { columns = append(columns, selector.C(f)) } columns = append(columns, aggregation...) selector.Select(columns...) } return selector.GroupBy(selector.Columns(lgb.fields...)...) } // LogentrySelect is the builder for selecting fields of Logentry entities. type LogentrySelect struct { *LogentryQuery // intermediate query (i.e. traversal path). sql *sql.Selector } // Scan applies the selector query and scans the result into the given value. func (ls *LogentrySelect) Scan(ctx context.Context, v interface{}) error { if err := ls.prepareQuery(ctx); err != nil { return err } ls.sql = ls.LogentryQuery.sqlQuery(ctx) return ls.sqlScan(ctx, v) } // ScanX is like Scan, but panics if an error occurs. func (ls *LogentrySelect) ScanX(ctx context.Context, v interface{}) { if err := ls.Scan(ctx, v); err != nil { panic(err) } } // Strings returns list of strings from a selector. It is only allowed when selecting one field. func (ls *LogentrySelect) Strings(ctx context.Context) ([]string, error) { if len(ls.fields) > 1 { return nil, errors.New("ent: LogentrySelect.Strings is not achievable when selecting more than 1 field") } var v []string if err := ls.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // StringsX is like Strings, but panics if an error occurs. func (ls *LogentrySelect) StringsX(ctx context.Context) []string { v, err := ls.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 (ls *LogentrySelect) String(ctx context.Context) (_ string, err error) { var v []string if v, err = ls.Strings(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentrySelect.Strings returned %d results when one was expected", len(v)) } return } // StringX is like String, but panics if an error occurs. func (ls *LogentrySelect) StringX(ctx context.Context) string { v, err := ls.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 (ls *LogentrySelect) Ints(ctx context.Context) ([]int, error) { if len(ls.fields) > 1 { return nil, errors.New("ent: LogentrySelect.Ints is not achievable when selecting more than 1 field") } var v []int if err := ls.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // IntsX is like Ints, but panics if an error occurs. func (ls *LogentrySelect) IntsX(ctx context.Context) []int { v, err := ls.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 (ls *LogentrySelect) Int(ctx context.Context) (_ int, err error) { var v []int if v, err = ls.Ints(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentrySelect.Ints returned %d results when one was expected", len(v)) } return } // IntX is like Int, but panics if an error occurs. func (ls *LogentrySelect) IntX(ctx context.Context) int { v, err := ls.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 (ls *LogentrySelect) Float64s(ctx context.Context) ([]float64, error) { if len(ls.fields) > 1 { return nil, errors.New("ent: LogentrySelect.Float64s is not achievable when selecting more than 1 field") } var v []float64 if err := ls.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // Float64sX is like Float64s, but panics if an error occurs. func (ls *LogentrySelect) Float64sX(ctx context.Context) []float64 { v, err := ls.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 (ls *LogentrySelect) Float64(ctx context.Context) (_ float64, err error) { var v []float64 if v, err = ls.Float64s(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentrySelect.Float64s returned %d results when one was expected", len(v)) } return } // Float64X is like Float64, but panics if an error occurs. func (ls *LogentrySelect) Float64X(ctx context.Context) float64 { v, err := ls.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 (ls *LogentrySelect) Bools(ctx context.Context) ([]bool, error) { if len(ls.fields) > 1 { return nil, errors.New("ent: LogentrySelect.Bools is not achievable when selecting more than 1 field") } var v []bool if err := ls.Scan(ctx, &v); err != nil { return nil, err } return v, nil } // BoolsX is like Bools, but panics if an error occurs. func (ls *LogentrySelect) BoolsX(ctx context.Context) []bool { v, err := ls.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 (ls *LogentrySelect) Bool(ctx context.Context) (_ bool, err error) { var v []bool if v, err = ls.Bools(ctx); err != nil { return } switch len(v) { case 1: return v[0], nil case 0: err = &NotFoundError{logentry.Label} default: err = fmt.Errorf("ent: LogentrySelect.Bools returned %d results when one was expected", len(v)) } return } // BoolX is like Bool, but panics if an error occurs. func (ls *LogentrySelect) BoolX(ctx context.Context) bool { v, err := ls.Bool(ctx) if err != nil { panic(err) } return v } func (ls *LogentrySelect) sqlScan(ctx context.Context, v interface{}) error { rows := &sql.Rows{} query, args := ls.sql.Query() if err := ls.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) }