mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
* fix grammar and english usage in templates * bindata gen * codegen * go generate ./again...
975 lines
25 KiB
Go
975 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"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
|
|
"github.com/facebook/ent/dialect/sql"
|
|
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebook/ent/examples/edgeindex/ent/city"
|
|
"github.com/facebook/ent/examples/edgeindex/ent/predicate"
|
|
"github.com/facebook/ent/examples/edgeindex/ent/street"
|
|
"github.com/facebook/ent/schema/field"
|
|
)
|
|
|
|
// StreetQuery is the builder for querying Street entities.
|
|
type StreetQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.Street
|
|
// eager-loading edges.
|
|
withCity *CityQuery
|
|
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 StreetQuery builder.
|
|
func (sq *StreetQuery) Where(ps ...predicate.Street) *StreetQuery {
|
|
sq.predicates = append(sq.predicates, ps...)
|
|
return sq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (sq *StreetQuery) Limit(limit int) *StreetQuery {
|
|
sq.limit = &limit
|
|
return sq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (sq *StreetQuery) Offset(offset int) *StreetQuery {
|
|
sq.offset = &offset
|
|
return sq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (sq *StreetQuery) Order(o ...OrderFunc) *StreetQuery {
|
|
sq.order = append(sq.order, o...)
|
|
return sq
|
|
}
|
|
|
|
// QueryCity chains the current query on the "city" edge.
|
|
func (sq *StreetQuery) QueryCity() *CityQuery {
|
|
query := &CityQuery{config: sq.config}
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := sq.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(street.Table, street.FieldID, selector),
|
|
sqlgraph.To(city.Table, city.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, street.CityTable, street.CityColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(sq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first Street entity from the query.
|
|
// Returns a *NotFoundError when no Street was found.
|
|
func (sq *StreetQuery) First(ctx context.Context) (*Street, error) {
|
|
nodes, err := sq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{street.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (sq *StreetQuery) FirstX(ctx context.Context) *Street {
|
|
node, err := sq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Street ID from the query.
|
|
// Returns a *NotFoundError when no Street ID was found.
|
|
func (sq *StreetQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{street.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (sq *StreetQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := sq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Street entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when exactly one Street entity is not found.
|
|
// Returns a *NotFoundError when no Street entities are found.
|
|
func (sq *StreetQuery) Only(ctx context.Context) (*Street, error) {
|
|
nodes, err := sq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{street.Label}
|
|
default:
|
|
return nil, &NotSingularError{street.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (sq *StreetQuery) OnlyX(ctx context.Context) *Street {
|
|
node, err := sq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Street ID in the query.
|
|
// Returns a *NotSingularError when exactly one Street ID is not found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (sq *StreetQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = &NotSingularError{street.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (sq *StreetQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := sq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Streets.
|
|
func (sq *StreetQuery) All(ctx context.Context) ([]*Street, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (sq *StreetQuery) AllX(ctx context.Context) []*Street {
|
|
nodes, err := sq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Street IDs.
|
|
func (sq *StreetQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
if err := sq.Select(street.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (sq *StreetQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := sq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (sq *StreetQuery) Count(ctx context.Context) (int, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return sq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (sq *StreetQuery) 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 *StreetQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return sq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (sq *StreetQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := sq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the StreetQuery 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 *StreetQuery) Clone() *StreetQuery {
|
|
if sq == nil {
|
|
return nil
|
|
}
|
|
return &StreetQuery{
|
|
config: sq.config,
|
|
limit: sq.limit,
|
|
offset: sq.offset,
|
|
order: append([]OrderFunc{}, sq.order...),
|
|
predicates: append([]predicate.Street{}, sq.predicates...),
|
|
withCity: sq.withCity.Clone(),
|
|
// clone intermediate query.
|
|
sql: sq.sql.Clone(),
|
|
path: sq.path,
|
|
}
|
|
}
|
|
|
|
// WithCity tells the query-builder to eager-load the nodes that are connected to
|
|
// the "city" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (sq *StreetQuery) WithCity(opts ...func(*CityQuery)) *StreetQuery {
|
|
query := &CityQuery{config: sq.config}
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
sq.withCity = query
|
|
return sq
|
|
}
|
|
|
|
// 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 {
|
|
// Name string `json:"name,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Street.Query().
|
|
// GroupBy(street.FieldName).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (sq *StreetQuery) GroupBy(field string, fields ...string) *StreetGroupBy {
|
|
group := &StreetGroupBy{config: sq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlQuery(), 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 {
|
|
// Name string `json:"name,omitempty"`
|
|
// }
|
|
//
|
|
// client.Street.Query().
|
|
// Select(street.FieldName).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (sq *StreetQuery) Select(field string, fields ...string) *StreetSelect {
|
|
sq.fields = append([]string{field}, fields...)
|
|
return &StreetSelect{StreetQuery: sq}
|
|
}
|
|
|
|
func (sq *StreetQuery) prepareQuery(ctx context.Context) error {
|
|
for _, f := range sq.fields {
|
|
if !street.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if sq.path != nil {
|
|
prev, err := sq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sq *StreetQuery) sqlAll(ctx context.Context) ([]*Street, error) {
|
|
var (
|
|
nodes = []*Street{}
|
|
withFKs = sq.withFKs
|
|
_spec = sq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
sq.withCity != nil,
|
|
}
|
|
)
|
|
if sq.withCity != nil {
|
|
withFKs = true
|
|
}
|
|
if withFKs {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, street.ForeignKeys...)
|
|
}
|
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
|
node := &Street{config: sq.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, sq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
|
|
if query := sq.withCity; query != nil {
|
|
ids := make([]int, 0, len(nodes))
|
|
nodeids := make(map[int][]*Street)
|
|
for i := range nodes {
|
|
if fk := nodes[i].city_streets; fk != nil {
|
|
ids = append(ids, *fk)
|
|
nodeids[*fk] = append(nodeids[*fk], nodes[i])
|
|
}
|
|
}
|
|
query.Where(city.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 "city_streets" returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
nodes[i].Edges.City = n
|
|
}
|
|
}
|
|
}
|
|
|
|
return nodes, nil
|
|
}
|
|
|
|
func (sq *StreetQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := sq.querySpec()
|
|
return sqlgraph.CountNodes(ctx, sq.driver, _spec)
|
|
}
|
|
|
|
func (sq *StreetQuery) 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 *StreetQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: street.Table,
|
|
Columns: street.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: street.FieldID,
|
|
},
|
|
},
|
|
From: sq.sql,
|
|
Unique: true,
|
|
}
|
|
if fields := sq.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, street.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != street.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
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, street.ValidColumn)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (sq *StreetQuery) sqlQuery() *sql.Selector {
|
|
builder := sql.Dialect(sq.driver.Dialect())
|
|
t1 := builder.Table(street.Table)
|
|
selector := builder.Select(t1.Columns(street.Columns...)...).From(t1)
|
|
if sq.sql != nil {
|
|
selector = sq.sql
|
|
selector.Select(selector.Columns(street.Columns...)...)
|
|
}
|
|
for _, p := range sq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range sq.order {
|
|
p(selector, street.ValidColumn)
|
|
}
|
|
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
|
|
}
|
|
|
|
// StreetGroupBy is the group-by builder for Street entities.
|
|
type StreetGroupBy 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 (sgb *StreetGroupBy) Aggregate(fns ...AggregateFunc) *StreetGroupBy {
|
|
sgb.fns = append(sgb.fns, fns...)
|
|
return sgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (sgb *StreetGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := sgb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sgb.sql = query
|
|
return sgb.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (sgb *StreetGroupBy) 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 executing a group-by query with one field.
|
|
func (sgb *StreetGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: StreetGroupBy.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 *StreetGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = sgb.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetGroupBy.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (sgb *StreetGroupBy) StringX(ctx context.Context) string {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: StreetGroupBy.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 *StreetGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = sgb.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetGroupBy.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (sgb *StreetGroupBy) IntX(ctx context.Context) int {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: StreetGroupBy.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 *StreetGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = sgb.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetGroupBy.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (sgb *StreetGroupBy) Float64X(ctx context.Context) float64 {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: StreetGroupBy.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 *StreetGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := sgb.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 (sgb *StreetGroupBy) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = sgb.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetGroupBy.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (sgb *StreetGroupBy) BoolX(ctx context.Context) bool {
|
|
v, err := sgb.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (sgb *StreetGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range sgb.fields {
|
|
if !street.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := sgb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := sgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (sgb *StreetGroupBy) 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, street.ValidColumn))
|
|
}
|
|
return selector.Select(columns...).GroupBy(sgb.fields...)
|
|
}
|
|
|
|
// StreetSelect is the builder for selecting fields of Street entities.
|
|
type StreetSelect struct {
|
|
*StreetQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (ss *StreetSelect) Scan(ctx context.Context, v interface{}) error {
|
|
if err := ss.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
ss.sql = ss.StreetQuery.sqlQuery()
|
|
return ss.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (ss *StreetSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := ss.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from a selector. It is only allowed when selecting one field.
|
|
func (ss *StreetSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: StreetSelect.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 *StreetSelect) StringsX(ctx context.Context) []string {
|
|
v, err := ss.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 (ss *StreetSelect) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = ss.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetSelect.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (ss *StreetSelect) StringX(ctx context.Context) string {
|
|
v, err := ss.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 (ss *StreetSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: StreetSelect.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 *StreetSelect) IntsX(ctx context.Context) []int {
|
|
v, err := ss.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 (ss *StreetSelect) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = ss.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetSelect.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (ss *StreetSelect) IntX(ctx context.Context) int {
|
|
v, err := ss.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 (ss *StreetSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: StreetSelect.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 *StreetSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := ss.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 (ss *StreetSelect) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = ss.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetSelect.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (ss *StreetSelect) Float64X(ctx context.Context) float64 {
|
|
v, err := ss.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 (ss *StreetSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: StreetSelect.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 *StreetSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := ss.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 (ss *StreetSelect) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = ss.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{street.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: StreetSelect.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (ss *StreetSelect) BoolX(ctx context.Context) bool {
|
|
v, err := ss.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (ss *StreetSelect) 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 *StreetSelect) sqlQuery() sql.Querier {
|
|
selector := ss.sql
|
|
selector.Select(selector.Columns(ss.fields...)...)
|
|
return selector
|
|
}
|