Files
ent/examples/o2orecur/ent/node_query.go
Ariel Mashraki fd0a7f9f02 all: facebookincubator/ent => facebook/ent (#660)
ent repository is going to be migrated to facebook organization
2020-08-18 11:05:08 +03:00

1003 lines
25 KiB
Go

// Copyright 2019-present Facebook Inc. 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"
"github.com/facebook/ent/dialect/sql"
"github.com/facebook/ent/dialect/sql/sqlgraph"
"github.com/facebook/ent/examples/o2orecur/ent/node"
"github.com/facebook/ent/examples/o2orecur/ent/predicate"
"github.com/facebook/ent/schema/field"
)
// NodeQuery is the builder for querying Node entities.
type NodeQuery struct {
config
limit *int
offset *int
order []OrderFunc
unique []string
predicates []predicate.Node
// eager-loading edges.
withPrev *NodeQuery
withNext *NodeQuery
withFKs bool
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Where adds a new predicate for the builder.
func (nq *NodeQuery) Where(ps ...predicate.Node) *NodeQuery {
nq.predicates = append(nq.predicates, ps...)
return nq
}
// Limit adds a limit step to the query.
func (nq *NodeQuery) Limit(limit int) *NodeQuery {
nq.limit = &limit
return nq
}
// Offset adds an offset step to the query.
func (nq *NodeQuery) Offset(offset int) *NodeQuery {
nq.offset = &offset
return nq
}
// Order adds an order step to the query.
func (nq *NodeQuery) Order(o ...OrderFunc) *NodeQuery {
nq.order = append(nq.order, o...)
return nq
}
// QueryPrev chains the current query on the prev edge.
func (nq *NodeQuery) QueryPrev() *NodeQuery {
query := &NodeQuery{config: nq.config}
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := nq.prepareQuery(ctx); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(node.Table, node.FieldID, nq.sqlQuery()),
sqlgraph.To(node.Table, node.FieldID),
sqlgraph.Edge(sqlgraph.O2O, true, node.PrevTable, node.PrevColumn),
)
fromU = sqlgraph.SetNeighbors(nq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// QueryNext chains the current query on the next edge.
func (nq *NodeQuery) QueryNext() *NodeQuery {
query := &NodeQuery{config: nq.config}
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := nq.prepareQuery(ctx); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(node.Table, node.FieldID, nq.sqlQuery()),
sqlgraph.To(node.Table, node.FieldID),
sqlgraph.Edge(sqlgraph.O2O, false, node.NextTable, node.NextColumn),
)
fromU = sqlgraph.SetNeighbors(nq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// First returns the first Node entity in the query. Returns *NotFoundError when no node was found.
func (nq *NodeQuery) First(ctx context.Context) (*Node, error) {
ns, err := nq.Limit(1).All(ctx)
if err != nil {
return nil, err
}
if len(ns) == 0 {
return nil, &NotFoundError{node.Label}
}
return ns[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (nq *NodeQuery) FirstX(ctx context.Context) *Node {
n, err := nq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return n
}
// FirstID returns the first Node id in the query. Returns *NotFoundError when no id was found.
func (nq *NodeQuery) FirstID(ctx context.Context) (id int, err error) {
var ids []int
if ids, err = nq.Limit(1).IDs(ctx); err != nil {
return
}
if len(ids) == 0 {
err = &NotFoundError{node.Label}
return
}
return ids[0], nil
}
// FirstXID is like FirstID, but panics if an error occurs.
func (nq *NodeQuery) FirstXID(ctx context.Context) int {
id, err := nq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns the only Node entity in the query, returns an error if not exactly one entity was returned.
func (nq *NodeQuery) Only(ctx context.Context) (*Node, error) {
ns, err := nq.Limit(2).All(ctx)
if err != nil {
return nil, err
}
switch len(ns) {
case 1:
return ns[0], nil
case 0:
return nil, &NotFoundError{node.Label}
default:
return nil, &NotSingularError{node.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (nq *NodeQuery) OnlyX(ctx context.Context) *Node {
n, err := nq.Only(ctx)
if err != nil {
panic(err)
}
return n
}
// OnlyID returns the only Node id in the query, returns an error if not exactly one id was returned.
func (nq *NodeQuery) OnlyID(ctx context.Context) (id int, err error) {
var ids []int
if ids, err = nq.Limit(2).IDs(ctx); err != nil {
return
}
switch len(ids) {
case 1:
id = ids[0]
case 0:
err = &NotFoundError{node.Label}
default:
err = &NotSingularError{node.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (nq *NodeQuery) OnlyIDX(ctx context.Context) int {
id, err := nq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of Nodes.
func (nq *NodeQuery) All(ctx context.Context) ([]*Node, error) {
if err := nq.prepareQuery(ctx); err != nil {
return nil, err
}
return nq.sqlAll(ctx)
}
// AllX is like All, but panics if an error occurs.
func (nq *NodeQuery) AllX(ctx context.Context) []*Node {
ns, err := nq.All(ctx)
if err != nil {
panic(err)
}
return ns
}
// IDs executes the query and returns a list of Node ids.
func (nq *NodeQuery) IDs(ctx context.Context) ([]int, error) {
var ids []int
if err := nq.Select(node.FieldID).Scan(ctx, &ids); err != nil {
return nil, err
}
return ids, nil
}
// IDsX is like IDs, but panics if an error occurs.
func (nq *NodeQuery) IDsX(ctx context.Context) []int {
ids, err := nq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (nq *NodeQuery) Count(ctx context.Context) (int, error) {
if err := nq.prepareQuery(ctx); err != nil {
return 0, err
}
return nq.sqlCount(ctx)
}
// CountX is like Count, but panics if an error occurs.
func (nq *NodeQuery) CountX(ctx context.Context) int {
count, err := nq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (nq *NodeQuery) Exist(ctx context.Context) (bool, error) {
if err := nq.prepareQuery(ctx); err != nil {
return false, err
}
return nq.sqlExist(ctx)
}
// ExistX is like Exist, but panics if an error occurs.
func (nq *NodeQuery) ExistX(ctx context.Context) bool {
exist, err := nq.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 (nq *NodeQuery) Clone() *NodeQuery {
return &NodeQuery{
config: nq.config,
limit: nq.limit,
offset: nq.offset,
order: append([]OrderFunc{}, nq.order...),
unique: append([]string{}, nq.unique...),
predicates: append([]predicate.Node{}, nq.predicates...),
// clone intermediate query.
sql: nq.sql.Clone(),
path: nq.path,
}
}
// WithPrev tells the query-builder to eager-loads the nodes that are connected to
// the "prev" edge. The optional arguments used to configure the query builder of the edge.
func (nq *NodeQuery) WithPrev(opts ...func(*NodeQuery)) *NodeQuery {
query := &NodeQuery{config: nq.config}
for _, opt := range opts {
opt(query)
}
nq.withPrev = query
return nq
}
// WithNext tells the query-builder to eager-loads the nodes that are connected to
// the "next" edge. The optional arguments used to configure the query builder of the edge.
func (nq *NodeQuery) WithNext(opts ...func(*NodeQuery)) *NodeQuery {
query := &NodeQuery{config: nq.config}
for _, opt := range opts {
opt(query)
}
nq.withNext = query
return nq
}
// GroupBy 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 {
// Value int `json:"value,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.Node.Query().
// GroupBy(node.FieldValue).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
//
func (nq *NodeQuery) GroupBy(field string, fields ...string) *NodeGroupBy {
group := &NodeGroupBy{config: nq.config}
group.fields = append([]string{field}, fields...)
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
if err := nq.prepareQuery(ctx); err != nil {
return nil, err
}
return nq.sqlQuery(), nil
}
return group
}
// Select one or more fields from the given query.
//
// Example:
//
// var v []struct {
// Value int `json:"value,omitempty"`
// }
//
// client.Node.Query().
// Select(node.FieldValue).
// Scan(ctx, &v)
//
func (nq *NodeQuery) Select(field string, fields ...string) *NodeSelect {
selector := &NodeSelect{config: nq.config}
selector.fields = append([]string{field}, fields...)
selector.path = func(ctx context.Context) (prev *sql.Selector, err error) {
if err := nq.prepareQuery(ctx); err != nil {
return nil, err
}
return nq.sqlQuery(), nil
}
return selector
}
func (nq *NodeQuery) prepareQuery(ctx context.Context) error {
if nq.path != nil {
prev, err := nq.path(ctx)
if err != nil {
return err
}
nq.sql = prev
}
return nil
}
func (nq *NodeQuery) sqlAll(ctx context.Context) ([]*Node, error) {
var (
nodes = []*Node{}
withFKs = nq.withFKs
_spec = nq.querySpec()
loadedTypes = [2]bool{
nq.withPrev != nil,
nq.withNext != nil,
}
)
if nq.withPrev != nil {
withFKs = true
}
if withFKs {
_spec.Node.Columns = append(_spec.Node.Columns, node.ForeignKeys...)
}
_spec.ScanValues = func() []interface{} {
node := &Node{config: nq.config}
nodes = append(nodes, node)
values := node.scanValues()
if withFKs {
values = append(values, node.fkValues()...)
}
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, nq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
if query := nq.withPrev; query != nil {
ids := make([]int, 0, len(nodes))
nodeids := make(map[int][]*Node)
for i := range nodes {
if fk := nodes[i].node_next; fk != nil {
ids = append(ids, *fk)
nodeids[*fk] = append(nodeids[*fk], nodes[i])
}
}
query.Where(node.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 "node_next" returned %v`, n.ID)
}
for i := range nodes {
nodes[i].Edges.Prev = n
}
}
}
if query := nq.withNext; query != nil {
fks := make([]driver.Value, 0, len(nodes))
nodeids := make(map[int]*Node)
for i := range nodes {
fks = append(fks, nodes[i].ID)
nodeids[nodes[i].ID] = nodes[i]
}
query.withFKs = true
query.Where(predicate.Node(func(s *sql.Selector) {
s.Where(sql.InValues(node.NextColumn, fks...))
}))
neighbors, err := query.All(ctx)
if err != nil {
return nil, err
}
for _, n := range neighbors {
fk := n.node_next
if fk == nil {
return nil, fmt.Errorf(`foreign-key "node_next" is nil for node %v`, n.ID)
}
node, ok := nodeids[*fk]
if !ok {
return nil, fmt.Errorf(`unexpected foreign-key "node_next" returned %v for node %v`, *fk, n.ID)
}
node.Edges.Next = n
}
}
return nodes, nil
}
func (nq *NodeQuery) sqlCount(ctx context.Context) (int, error) {
_spec := nq.querySpec()
return sqlgraph.CountNodes(ctx, nq.driver, _spec)
}
func (nq *NodeQuery) sqlExist(ctx context.Context) (bool, error) {
n, err := nq.sqlCount(ctx)
if err != nil {
return false, fmt.Errorf("ent: check existence: %v", err)
}
return n > 0, nil
}
func (nq *NodeQuery) querySpec() *sqlgraph.QuerySpec {
_spec := &sqlgraph.QuerySpec{
Node: &sqlgraph.NodeSpec{
Table: node.Table,
Columns: node.Columns,
ID: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: node.FieldID,
},
},
From: nq.sql,
Unique: true,
}
if ps := nq.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if limit := nq.limit; limit != nil {
_spec.Limit = *limit
}
if offset := nq.offset; offset != nil {
_spec.Offset = *offset
}
if ps := nq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (nq *NodeQuery) sqlQuery() *sql.Selector {
builder := sql.Dialect(nq.driver.Dialect())
t1 := builder.Table(node.Table)
selector := builder.Select(t1.Columns(node.Columns...)...).From(t1)
if nq.sql != nil {
selector = nq.sql
selector.Select(selector.Columns(node.Columns...)...)
}
for _, p := range nq.predicates {
p(selector)
}
for _, p := range nq.order {
p(selector)
}
if offset := nq.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 := nq.limit; limit != nil {
selector.Limit(*limit)
}
return selector
}
// NodeGroupBy is the builder for group-by Node entities.
type NodeGroupBy 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 (ngb *NodeGroupBy) Aggregate(fns ...AggregateFunc) *NodeGroupBy {
ngb.fns = append(ngb.fns, fns...)
return ngb
}
// Scan applies the group-by query and scan the result into the given value.
func (ngb *NodeGroupBy) Scan(ctx context.Context, v interface{}) error {
query, err := ngb.path(ctx)
if err != nil {
return err
}
ngb.sql = query
return ngb.sqlScan(ctx, v)
}
// ScanX is like Scan, but panics if an error occurs.
func (ngb *NodeGroupBy) ScanX(ctx context.Context, v interface{}) {
if err := ngb.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 (ngb *NodeGroupBy) Strings(ctx context.Context) ([]string, error) {
if len(ngb.fields) > 1 {
return nil, errors.New("ent: NodeGroupBy.Strings is not achievable when grouping more than 1 field")
}
var v []string
if err := ngb.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// StringsX is like Strings, but panics if an error occurs.
func (ngb *NodeGroupBy) StringsX(ctx context.Context) []string {
v, err := ngb.Strings(ctx)
if err != nil {
panic(err)
}
return v
}
// String returns a single string from group-by. It is only allowed when querying group-by with one field.
func (ngb *NodeGroupBy) String(ctx context.Context) (_ string, err error) {
var v []string
if v, err = ngb.Strings(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeGroupBy.Strings returned %d results when one was expected", len(v))
}
return
}
// StringX is like String, but panics if an error occurs.
func (ngb *NodeGroupBy) StringX(ctx context.Context) string {
v, err := ngb.String(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 (ngb *NodeGroupBy) Ints(ctx context.Context) ([]int, error) {
if len(ngb.fields) > 1 {
return nil, errors.New("ent: NodeGroupBy.Ints is not achievable when grouping more than 1 field")
}
var v []int
if err := ngb.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// IntsX is like Ints, but panics if an error occurs.
func (ngb *NodeGroupBy) IntsX(ctx context.Context) []int {
v, err := ngb.Ints(ctx)
if err != nil {
panic(err)
}
return v
}
// Int returns a single int from group-by. It is only allowed when querying group-by with one field.
func (ngb *NodeGroupBy) Int(ctx context.Context) (_ int, err error) {
var v []int
if v, err = ngb.Ints(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeGroupBy.Ints returned %d results when one was expected", len(v))
}
return
}
// IntX is like Int, but panics if an error occurs.
func (ngb *NodeGroupBy) IntX(ctx context.Context) int {
v, err := ngb.Int(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 (ngb *NodeGroupBy) Float64s(ctx context.Context) ([]float64, error) {
if len(ngb.fields) > 1 {
return nil, errors.New("ent: NodeGroupBy.Float64s is not achievable when grouping more than 1 field")
}
var v []float64
if err := ngb.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// Float64sX is like Float64s, but panics if an error occurs.
func (ngb *NodeGroupBy) Float64sX(ctx context.Context) []float64 {
v, err := ngb.Float64s(ctx)
if err != nil {
panic(err)
}
return v
}
// Float64 returns a single float64 from group-by. It is only allowed when querying group-by with one field.
func (ngb *NodeGroupBy) Float64(ctx context.Context) (_ float64, err error) {
var v []float64
if v, err = ngb.Float64s(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeGroupBy.Float64s returned %d results when one was expected", len(v))
}
return
}
// Float64X is like Float64, but panics if an error occurs.
func (ngb *NodeGroupBy) Float64X(ctx context.Context) float64 {
v, err := ngb.Float64(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 (ngb *NodeGroupBy) Bools(ctx context.Context) ([]bool, error) {
if len(ngb.fields) > 1 {
return nil, errors.New("ent: NodeGroupBy.Bools is not achievable when grouping more than 1 field")
}
var v []bool
if err := ngb.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// BoolsX is like Bools, but panics if an error occurs.
func (ngb *NodeGroupBy) BoolsX(ctx context.Context) []bool {
v, err := ngb.Bools(ctx)
if err != nil {
panic(err)
}
return v
}
// Bool returns a single bool from group-by. It is only allowed when querying group-by with one field.
func (ngb *NodeGroupBy) Bool(ctx context.Context) (_ bool, err error) {
var v []bool
if v, err = ngb.Bools(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeGroupBy.Bools returned %d results when one was expected", len(v))
}
return
}
// BoolX is like Bool, but panics if an error occurs.
func (ngb *NodeGroupBy) BoolX(ctx context.Context) bool {
v, err := ngb.Bool(ctx)
if err != nil {
panic(err)
}
return v
}
func (ngb *NodeGroupBy) sqlScan(ctx context.Context, v interface{}) error {
rows := &sql.Rows{}
query, args := ngb.sqlQuery().Query()
if err := ngb.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
func (ngb *NodeGroupBy) sqlQuery() *sql.Selector {
selector := ngb.sql
columns := make([]string, 0, len(ngb.fields)+len(ngb.fns))
columns = append(columns, ngb.fields...)
for _, fn := range ngb.fns {
columns = append(columns, fn(selector))
}
return selector.Select(columns...).GroupBy(ngb.fields...)
}
// NodeSelect is the builder for select fields of Node entities.
type NodeSelect struct {
config
fields []string
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Scan applies the selector query and scan the result into the given value.
func (ns *NodeSelect) Scan(ctx context.Context, v interface{}) error {
query, err := ns.path(ctx)
if err != nil {
return err
}
ns.sql = query
return ns.sqlScan(ctx, v)
}
// ScanX is like Scan, but panics if an error occurs.
func (ns *NodeSelect) ScanX(ctx context.Context, v interface{}) {
if err := ns.Scan(ctx, v); err != nil {
panic(err)
}
}
// Strings returns list of strings from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Strings(ctx context.Context) ([]string, error) {
if len(ns.fields) > 1 {
return nil, errors.New("ent: NodeSelect.Strings is not achievable when selecting more than 1 field")
}
var v []string
if err := ns.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// StringsX is like Strings, but panics if an error occurs.
func (ns *NodeSelect) StringsX(ctx context.Context) []string {
v, err := ns.Strings(ctx)
if err != nil {
panic(err)
}
return v
}
// String returns a single string from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) String(ctx context.Context) (_ string, err error) {
var v []string
if v, err = ns.Strings(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeSelect.Strings returned %d results when one was expected", len(v))
}
return
}
// StringX is like String, but panics if an error occurs.
func (ns *NodeSelect) StringX(ctx context.Context) string {
v, err := ns.String(ctx)
if err != nil {
panic(err)
}
return v
}
// Ints returns list of ints from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Ints(ctx context.Context) ([]int, error) {
if len(ns.fields) > 1 {
return nil, errors.New("ent: NodeSelect.Ints is not achievable when selecting more than 1 field")
}
var v []int
if err := ns.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// IntsX is like Ints, but panics if an error occurs.
func (ns *NodeSelect) IntsX(ctx context.Context) []int {
v, err := ns.Ints(ctx)
if err != nil {
panic(err)
}
return v
}
// Int returns a single int from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Int(ctx context.Context) (_ int, err error) {
var v []int
if v, err = ns.Ints(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeSelect.Ints returned %d results when one was expected", len(v))
}
return
}
// IntX is like Int, but panics if an error occurs.
func (ns *NodeSelect) IntX(ctx context.Context) int {
v, err := ns.Int(ctx)
if err != nil {
panic(err)
}
return v
}
// Float64s returns list of float64s from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Float64s(ctx context.Context) ([]float64, error) {
if len(ns.fields) > 1 {
return nil, errors.New("ent: NodeSelect.Float64s is not achievable when selecting more than 1 field")
}
var v []float64
if err := ns.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// Float64sX is like Float64s, but panics if an error occurs.
func (ns *NodeSelect) Float64sX(ctx context.Context) []float64 {
v, err := ns.Float64s(ctx)
if err != nil {
panic(err)
}
return v
}
// Float64 returns a single float64 from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Float64(ctx context.Context) (_ float64, err error) {
var v []float64
if v, err = ns.Float64s(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeSelect.Float64s returned %d results when one was expected", len(v))
}
return
}
// Float64X is like Float64, but panics if an error occurs.
func (ns *NodeSelect) Float64X(ctx context.Context) float64 {
v, err := ns.Float64(ctx)
if err != nil {
panic(err)
}
return v
}
// Bools returns list of bools from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Bools(ctx context.Context) ([]bool, error) {
if len(ns.fields) > 1 {
return nil, errors.New("ent: NodeSelect.Bools is not achievable when selecting more than 1 field")
}
var v []bool
if err := ns.Scan(ctx, &v); err != nil {
return nil, err
}
return v, nil
}
// BoolsX is like Bools, but panics if an error occurs.
func (ns *NodeSelect) BoolsX(ctx context.Context) []bool {
v, err := ns.Bools(ctx)
if err != nil {
panic(err)
}
return v
}
// Bool returns a single bool from selector. It is only allowed when selecting one field.
func (ns *NodeSelect) Bool(ctx context.Context) (_ bool, err error) {
var v []bool
if v, err = ns.Bools(ctx); err != nil {
return
}
switch len(v) {
case 1:
return v[0], nil
case 0:
err = &NotFoundError{node.Label}
default:
err = fmt.Errorf("ent: NodeSelect.Bools returned %d results when one was expected", len(v))
}
return
}
// BoolX is like Bool, but panics if an error occurs.
func (ns *NodeSelect) BoolX(ctx context.Context) bool {
v, err := ns.Bool(ctx)
if err != nil {
panic(err)
}
return v
}
func (ns *NodeSelect) sqlScan(ctx context.Context, v interface{}) error {
rows := &sql.Rows{}
query, args := ns.sqlQuery().Query()
if err := ns.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
func (ns *NodeSelect) sqlQuery() sql.Querier {
selector := ns.sql
selector.Select(selector.Columns(ns.fields...)...)
return selector
}