mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
This helps to determine if the edge was loaded (or requested) in eager-loading even if it's empty.
691 lines
18 KiB
Go
691 lines
18 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"database/sql/driver"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
"strconv"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
"github.com/facebookincubator/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/card"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/predicate"
|
|
"github.com/facebookincubator/ent/entc/integration/ent/spec"
|
|
"github.com/facebookincubator/ent/schema/field"
|
|
)
|
|
|
|
// SpecQuery is the builder for querying Spec entities.
|
|
type SpecQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
order []Order
|
|
unique []string
|
|
predicates []predicate.Spec
|
|
// eager-loading edges.
|
|
withCard *CardQuery
|
|
// intermediate query.
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Where adds a new predicate for the builder.
|
|
func (sq *SpecQuery) Where(ps ...predicate.Spec) *SpecQuery {
|
|
sq.predicates = append(sq.predicates, ps...)
|
|
return sq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (sq *SpecQuery) Limit(limit int) *SpecQuery {
|
|
sq.limit = &limit
|
|
return sq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (sq *SpecQuery) Offset(offset int) *SpecQuery {
|
|
sq.offset = &offset
|
|
return sq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (sq *SpecQuery) Order(o ...Order) *SpecQuery {
|
|
sq.order = append(sq.order, o...)
|
|
return sq
|
|
}
|
|
|
|
// QueryCard chains the current query on the card edge.
|
|
func (sq *SpecQuery) QueryCard() *CardQuery {
|
|
query := &CardQuery{config: sq.config}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(spec.Table, spec.FieldID, sq.sqlQuery()),
|
|
sqlgraph.To(card.Table, card.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2M, false, spec.CardTable, spec.CardPrimaryKey...),
|
|
)
|
|
query.sql = sqlgraph.SetNeighbors(sq.driver.Dialect(), step)
|
|
return query
|
|
}
|
|
|
|
// First returns the first Spec entity in the query. Returns *NotFoundError when no spec was found.
|
|
func (sq *SpecQuery) First(ctx context.Context) (*Spec, error) {
|
|
sSlice, err := sq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(sSlice) == 0 {
|
|
return nil, &NotFoundError{spec.Label}
|
|
}
|
|
return sSlice[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (sq *SpecQuery) FirstX(ctx context.Context) *Spec {
|
|
s, err := sq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// FirstID returns the first Spec id in the query. Returns *NotFoundError when no id was found.
|
|
func (sq *SpecQuery) FirstID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = sq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{spec.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstXID is like FirstID, but panics if an error occurs.
|
|
func (sq *SpecQuery) FirstXID(ctx context.Context) string {
|
|
id, err := sq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns the only Spec entity in the query, returns an error if not exactly one entity was returned.
|
|
func (sq *SpecQuery) Only(ctx context.Context) (*Spec, error) {
|
|
sSlice, err := sq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(sSlice) {
|
|
case 1:
|
|
return sSlice[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{spec.Label}
|
|
default:
|
|
return nil, &NotSingularError{spec.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (sq *SpecQuery) OnlyX(ctx context.Context) *Spec {
|
|
s, err := sq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// OnlyID returns the only Spec id in the query, returns an error if not exactly one id was returned.
|
|
func (sq *SpecQuery) OnlyID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = sq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{spec.Label}
|
|
default:
|
|
err = &NotSingularError{spec.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyXID is like OnlyID, but panics if an error occurs.
|
|
func (sq *SpecQuery) OnlyXID(ctx context.Context) string {
|
|
id, err := sq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Specs.
|
|
func (sq *SpecQuery) All(ctx context.Context) ([]*Spec, error) {
|
|
return sq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (sq *SpecQuery) AllX(ctx context.Context) []*Spec {
|
|
sSlice, err := sq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return sSlice
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Spec ids.
|
|
func (sq *SpecQuery) IDs(ctx context.Context) ([]string, error) {
|
|
var ids []string
|
|
if err := sq.Select(spec.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (sq *SpecQuery) IDsX(ctx context.Context) []string {
|
|
ids, err := sq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (sq *SpecQuery) Count(ctx context.Context) (int, error) {
|
|
return sq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (sq *SpecQuery) CountX(ctx context.Context) int {
|
|
count, err := sq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (sq *SpecQuery) Exist(ctx context.Context) (bool, error) {
|
|
return sq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (sq *SpecQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := sq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the query builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (sq *SpecQuery) Clone() *SpecQuery {
|
|
return &SpecQuery{
|
|
config: sq.config,
|
|
limit: sq.limit,
|
|
offset: sq.offset,
|
|
order: append([]Order{}, sq.order...),
|
|
unique: append([]string{}, sq.unique...),
|
|
predicates: append([]predicate.Spec{}, sq.predicates...),
|
|
// clone intermediate query.
|
|
sql: sq.sql.Clone(),
|
|
}
|
|
}
|
|
|
|
// WithCard tells the query-builder to eager-loads the nodes that are connected to
|
|
// the "card" edge. The optional arguments used to configure the query builder of the edge.
|
|
func (sq *SpecQuery) WithCard(opts ...func(*CardQuery)) *SpecQuery {
|
|
query := &CardQuery{config: sq.config}
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
sq.withCard = query
|
|
return sq
|
|
}
|
|
|
|
// GroupBy used to group vertices by one or more fields/columns.
|
|
// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
func (sq *SpecQuery) GroupBy(field string, fields ...string) *SpecGroupBy {
|
|
group := &SpecGroupBy{config: sq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.sql = sq.sqlQuery()
|
|
return group
|
|
}
|
|
|
|
// Select one or more fields from the given query.
|
|
func (sq *SpecQuery) Select(field string, fields ...string) *SpecSelect {
|
|
selector := &SpecSelect{config: sq.config}
|
|
selector.fields = append([]string{field}, fields...)
|
|
selector.sql = sq.sqlQuery()
|
|
return selector
|
|
}
|
|
|
|
func (sq *SpecQuery) sqlAll(ctx context.Context) ([]*Spec, error) {
|
|
var (
|
|
nodes = []*Spec{}
|
|
_spec = sq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
sq.withCard != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func() []interface{} {
|
|
node := &Spec{config: sq.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, sq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
|
|
if query := sq.withCard; query != nil {
|
|
fks := make([]driver.Value, 0, len(nodes))
|
|
ids := make(map[string]*Spec, len(nodes))
|
|
for _, node := range nodes {
|
|
ids[node.ID] = node
|
|
fks = append(fks, node.ID)
|
|
}
|
|
var (
|
|
edgeids []string
|
|
edges = make(map[string][]*Spec)
|
|
)
|
|
_spec := &sqlgraph.EdgeQuerySpec{
|
|
Edge: &sqlgraph.EdgeSpec{
|
|
Inverse: false,
|
|
Table: spec.CardTable,
|
|
Columns: spec.CardPrimaryKey,
|
|
},
|
|
Predicate: func(s *sql.Selector) {
|
|
s.Where(sql.InValues(spec.CardPrimaryKey[0], 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 := strconv.FormatInt(eout.Int64, 10)
|
|
inValue := strconv.FormatInt(ein.Int64, 10)
|
|
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, sq.driver, _spec); err != nil {
|
|
return nil, fmt.Errorf(`query edges "card": %v`, err)
|
|
}
|
|
query.Where(card.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 "card" node returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
nodes[i].Edges.Card = append(nodes[i].Edges.Card, n)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nodes, nil
|
|
}
|
|
|
|
func (sq *SpecQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := sq.querySpec()
|
|
return sqlgraph.CountNodes(ctx, sq.driver, _spec)
|
|
}
|
|
|
|
func (sq *SpecQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
n, err := sq.sqlCount(ctx)
|
|
if err != nil {
|
|
return false, fmt.Errorf("ent: check existence: %v", err)
|
|
}
|
|
return n > 0, nil
|
|
}
|
|
|
|
func (sq *SpecQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: spec.Table,
|
|
Columns: spec.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: spec.FieldID,
|
|
},
|
|
},
|
|
From: sq.sql,
|
|
Unique: true,
|
|
}
|
|
if ps := sq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := sq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := sq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := sq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (sq *SpecQuery) sqlQuery() *sql.Selector {
|
|
builder := sql.Dialect(sq.driver.Dialect())
|
|
t1 := builder.Table(spec.Table)
|
|
selector := builder.Select(t1.Columns(spec.Columns...)...).From(t1)
|
|
if sq.sql != nil {
|
|
selector = sq.sql
|
|
selector.Select(selector.Columns(spec.Columns...)...)
|
|
}
|
|
for _, p := range sq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range sq.order {
|
|
p(selector)
|
|
}
|
|
if offset := sq.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 := sq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// SpecGroupBy is the builder for group-by Spec entities.
|
|
type SpecGroupBy struct {
|
|
config
|
|
fields []string
|
|
fns []Aggregate
|
|
// intermediate query.
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (sgb *SpecGroupBy) Aggregate(fns ...Aggregate) *SpecGroupBy {
|
|
sgb.fns = append(sgb.fns, fns...)
|
|
return sgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scan the result into the given value.
|
|
func (sgb *SpecGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
return sgb.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) ScanX(ctx context.Context, v interface{}) {
|
|
if err := sgb.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.Strings is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := sgb.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.Ints is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := sgb.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.Float64s is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := sgb.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.Bools is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := sgb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := sgb.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (sgb *SpecGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
rows := &sql.Rows{}
|
|
query, args := sgb.sqlQuery().Query()
|
|
if err := sgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (sgb *SpecGroupBy) sqlQuery() *sql.Selector {
|
|
selector := sgb.sql
|
|
columns := make([]string, 0, len(sgb.fields)+len(sgb.fns))
|
|
columns = append(columns, sgb.fields...)
|
|
for _, fn := range sgb.fns {
|
|
columns = append(columns, fn(selector))
|
|
}
|
|
return selector.Select(columns...).GroupBy(sgb.fields...)
|
|
}
|
|
|
|
// SpecSelect is the builder for select fields of Spec entities.
|
|
type SpecSelect struct {
|
|
config
|
|
fields []string
|
|
// intermediate queries.
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Scan applies the selector query and scan the result into the given value.
|
|
func (ss *SpecSelect) Scan(ctx context.Context, v interface{}) error {
|
|
return ss.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (ss *SpecSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := ss.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.Strings is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (ss *SpecSelect) StringsX(ctx context.Context) []string {
|
|
v, err := ss.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.Ints is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (ss *SpecSelect) IntsX(ctx context.Context) []int {
|
|
v, err := ss.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.Float64s is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (ss *SpecSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := ss.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.Bools is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := ss.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (ss *SpecSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := ss.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (ss *SpecSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
rows := &sql.Rows{}
|
|
query, args := ss.sqlQuery().Query()
|
|
if err := ss.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (ss *SpecSelect) sqlQuery() sql.Querier {
|
|
selector := ss.sql
|
|
selector.Select(selector.Columns(ss.fields...)...)
|
|
return selector
|
|
}
|