mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
972 lines
25 KiB
Go
972 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"
|
|
|
|
"entgo.io/ent/dialect"
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/ent/item"
|
|
"entgo.io/ent/entc/integration/ent/predicate"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// ItemQuery is the builder for querying Item entities.
|
|
type ItemQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
unique *bool
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.Item
|
|
modifiers []func(s *sql.Selector)
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the ItemQuery builder.
|
|
func (iq *ItemQuery) Where(ps ...predicate.Item) *ItemQuery {
|
|
iq.predicates = append(iq.predicates, ps...)
|
|
return iq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (iq *ItemQuery) Limit(limit int) *ItemQuery {
|
|
iq.limit = &limit
|
|
return iq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (iq *ItemQuery) Offset(offset int) *ItemQuery {
|
|
iq.offset = &offset
|
|
return iq
|
|
}
|
|
|
|
// 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 (iq *ItemQuery) Unique(unique bool) *ItemQuery {
|
|
iq.unique = &unique
|
|
return iq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (iq *ItemQuery) Order(o ...OrderFunc) *ItemQuery {
|
|
iq.order = append(iq.order, o...)
|
|
return iq
|
|
}
|
|
|
|
// First returns the first Item entity from the query.
|
|
// Returns a *NotFoundError when no Item was found.
|
|
func (iq *ItemQuery) First(ctx context.Context) (*Item, error) {
|
|
nodes, err := iq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{item.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (iq *ItemQuery) FirstX(ctx context.Context) *Item {
|
|
node, err := iq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Item ID from the query.
|
|
// Returns a *NotFoundError when no Item ID was found.
|
|
func (iq *ItemQuery) FirstID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = iq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{item.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (iq *ItemQuery) FirstIDX(ctx context.Context) string {
|
|
id, err := iq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Item entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when exactly one Item entity is not found.
|
|
// Returns a *NotFoundError when no Item entities are found.
|
|
func (iq *ItemQuery) Only(ctx context.Context) (*Item, error) {
|
|
nodes, err := iq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{item.Label}
|
|
default:
|
|
return nil, &NotSingularError{item.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (iq *ItemQuery) OnlyX(ctx context.Context) *Item {
|
|
node, err := iq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Item ID in the query.
|
|
// Returns a *NotSingularError when exactly one Item ID is not found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (iq *ItemQuery) OnlyID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = iq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = &NotSingularError{item.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (iq *ItemQuery) OnlyIDX(ctx context.Context) string {
|
|
id, err := iq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Items.
|
|
func (iq *ItemQuery) All(ctx context.Context) ([]*Item, error) {
|
|
if err := iq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return iq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (iq *ItemQuery) AllX(ctx context.Context) []*Item {
|
|
nodes, err := iq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Item IDs.
|
|
func (iq *ItemQuery) IDs(ctx context.Context) ([]string, error) {
|
|
var ids []string
|
|
if err := iq.Select(item.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (iq *ItemQuery) IDsX(ctx context.Context) []string {
|
|
ids, err := iq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (iq *ItemQuery) Count(ctx context.Context) (int, error) {
|
|
if err := iq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return iq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (iq *ItemQuery) CountX(ctx context.Context) int {
|
|
count, err := iq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (iq *ItemQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := iq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return iq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (iq *ItemQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := iq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the ItemQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (iq *ItemQuery) Clone() *ItemQuery {
|
|
if iq == nil {
|
|
return nil
|
|
}
|
|
return &ItemQuery{
|
|
config: iq.config,
|
|
limit: iq.limit,
|
|
offset: iq.offset,
|
|
order: append([]OrderFunc{}, iq.order...),
|
|
predicates: append([]predicate.Item{}, iq.predicates...),
|
|
// clone intermediate query.
|
|
sql: iq.sql.Clone(),
|
|
path: iq.path,
|
|
}
|
|
}
|
|
|
|
// 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 {
|
|
// Text string `json:"text,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Item.Query().
|
|
// GroupBy(item.FieldText).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (iq *ItemQuery) GroupBy(field string, fields ...string) *ItemGroupBy {
|
|
group := &ItemGroupBy{config: iq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := iq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return iq.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 {
|
|
// Text string `json:"text,omitempty"`
|
|
// }
|
|
//
|
|
// client.Item.Query().
|
|
// Select(item.FieldText).
|
|
// Scan(ctx, &v)
|
|
//
|
|
func (iq *ItemQuery) Select(fields ...string) *ItemSelect {
|
|
iq.fields = append(iq.fields, fields...)
|
|
return &ItemSelect{ItemQuery: iq}
|
|
}
|
|
|
|
func (iq *ItemQuery) prepareQuery(ctx context.Context) error {
|
|
for _, f := range iq.fields {
|
|
if !item.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if iq.path != nil {
|
|
prev, err := iq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
iq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (iq *ItemQuery) sqlAll(ctx context.Context) ([]*Item, error) {
|
|
var (
|
|
nodes = []*Item{}
|
|
_spec = iq.querySpec()
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]interface{}, error) {
|
|
node := &Item{config: iq.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]
|
|
return node.assignValues(columns, values)
|
|
}
|
|
if len(iq.modifiers) > 0 {
|
|
_spec.Modifiers = iq.modifiers
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, iq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (iq *ItemQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := iq.querySpec()
|
|
if len(iq.modifiers) > 0 {
|
|
_spec.Modifiers = iq.modifiers
|
|
}
|
|
return sqlgraph.CountNodes(ctx, iq.driver, _spec)
|
|
}
|
|
|
|
func (iq *ItemQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
n, err := iq.sqlCount(ctx)
|
|
if err != nil {
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
}
|
|
return n > 0, nil
|
|
}
|
|
|
|
func (iq *ItemQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: item.Table,
|
|
Columns: item.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeString,
|
|
Column: item.FieldID,
|
|
},
|
|
},
|
|
From: iq.sql,
|
|
Unique: true,
|
|
}
|
|
if unique := iq.unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
}
|
|
if fields := iq.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, item.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != item.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
if ps := iq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := iq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := iq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := iq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (iq *ItemQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(iq.driver.Dialect())
|
|
t1 := builder.Table(item.Table)
|
|
columns := iq.fields
|
|
if len(columns) == 0 {
|
|
columns = item.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if iq.sql != nil {
|
|
selector = iq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if iq.unique != nil && *iq.unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, m := range iq.modifiers {
|
|
m(selector)
|
|
}
|
|
for _, p := range iq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range iq.order {
|
|
p(selector)
|
|
}
|
|
if offset := iq.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 := iq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// ForUpdate locks the selected rows against concurrent updates, and prevent them from being
|
|
// updated, deleted or "selected ... for update" by other sessions, until the transaction is
|
|
// either committed or rolled-back.
|
|
func (iq *ItemQuery) ForUpdate(opts ...sql.LockOption) *ItemQuery {
|
|
if iq.driver.Dialect() == dialect.Postgres {
|
|
iq.Unique(false)
|
|
}
|
|
iq.modifiers = append(iq.modifiers, func(s *sql.Selector) {
|
|
s.ForUpdate(opts...)
|
|
})
|
|
return iq
|
|
}
|
|
|
|
// ForShare behaves similarly to ForUpdate, except that it acquires a shared mode lock
|
|
// on any rows that are read. Other sessions can read the rows, but cannot modify them
|
|
// until your transaction commits.
|
|
func (iq *ItemQuery) ForShare(opts ...sql.LockOption) *ItemQuery {
|
|
if iq.driver.Dialect() == dialect.Postgres {
|
|
iq.Unique(false)
|
|
}
|
|
iq.modifiers = append(iq.modifiers, func(s *sql.Selector) {
|
|
s.ForShare(opts...)
|
|
})
|
|
return iq
|
|
}
|
|
|
|
// Modify adds a query modifier for attaching custom logic to queries.
|
|
func (iq *ItemQuery) Modify(modifiers ...func(s *sql.Selector)) *ItemSelect {
|
|
iq.modifiers = append(iq.modifiers, modifiers...)
|
|
return iq.Select()
|
|
}
|
|
|
|
// ItemGroupBy is the group-by builder for Item entities.
|
|
type ItemGroupBy 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 (igb *ItemGroupBy) Aggregate(fns ...AggregateFunc) *ItemGroupBy {
|
|
igb.fns = append(igb.fns, fns...)
|
|
return igb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (igb *ItemGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := igb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
igb.sql = query
|
|
return igb.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) ScanX(ctx context.Context, v interface{}) {
|
|
if err := igb.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 (igb *ItemGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(igb.fields) > 1 {
|
|
return nil, errors.New("ent: ItemGroupBy.Strings is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := igb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := igb.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 (igb *ItemGroupBy) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = igb.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemGroupBy.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) StringX(ctx context.Context) string {
|
|
v, err := igb.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 (igb *ItemGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(igb.fields) > 1 {
|
|
return nil, errors.New("ent: ItemGroupBy.Ints is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := igb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := igb.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 (igb *ItemGroupBy) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = igb.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemGroupBy.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) IntX(ctx context.Context) int {
|
|
v, err := igb.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 (igb *ItemGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(igb.fields) > 1 {
|
|
return nil, errors.New("ent: ItemGroupBy.Float64s is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := igb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := igb.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 (igb *ItemGroupBy) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = igb.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemGroupBy.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) Float64X(ctx context.Context) float64 {
|
|
v, err := igb.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 (igb *ItemGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(igb.fields) > 1 {
|
|
return nil, errors.New("ent: ItemGroupBy.Bools is not achievable when grouping more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := igb.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := igb.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 (igb *ItemGroupBy) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = igb.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemGroupBy.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (igb *ItemGroupBy) BoolX(ctx context.Context) bool {
|
|
v, err := igb.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (igb *ItemGroupBy) sqlScan(ctx context.Context, v interface{}) error {
|
|
for _, f := range igb.fields {
|
|
if !item.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := igb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := igb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (igb *ItemGroupBy) sqlQuery() *sql.Selector {
|
|
selector := igb.sql.Select()
|
|
aggregation := make([]string, 0, len(igb.fns))
|
|
for _, fn := range igb.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(igb.fields)+len(igb.fns))
|
|
for _, f := range igb.fields {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
for _, c := range aggregation {
|
|
columns = append(columns, c)
|
|
}
|
|
selector.Select(columns...)
|
|
}
|
|
return selector.GroupBy(selector.Columns(igb.fields...)...)
|
|
}
|
|
|
|
// ItemSelect is the builder for selecting fields of Item entities.
|
|
type ItemSelect struct {
|
|
*ItemQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (is *ItemSelect) Scan(ctx context.Context, v interface{}) error {
|
|
if err := is.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
is.sql = is.ItemQuery.sqlQuery(ctx)
|
|
return is.sqlScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (is *ItemSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := is.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from a selector. It is only allowed when selecting one field.
|
|
func (is *ItemSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(is.fields) > 1 {
|
|
return nil, errors.New("ent: ItemSelect.Strings is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []string
|
|
if err := is.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// StringsX is like Strings, but panics if an error occurs.
|
|
func (is *ItemSelect) StringsX(ctx context.Context) []string {
|
|
v, err := is.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 (is *ItemSelect) String(ctx context.Context) (_ string, err error) {
|
|
var v []string
|
|
if v, err = is.Strings(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemSelect.Strings returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// StringX is like String, but panics if an error occurs.
|
|
func (is *ItemSelect) StringX(ctx context.Context) string {
|
|
v, err := is.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 (is *ItemSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(is.fields) > 1 {
|
|
return nil, errors.New("ent: ItemSelect.Ints is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []int
|
|
if err := is.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// IntsX is like Ints, but panics if an error occurs.
|
|
func (is *ItemSelect) IntsX(ctx context.Context) []int {
|
|
v, err := is.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 (is *ItemSelect) Int(ctx context.Context) (_ int, err error) {
|
|
var v []int
|
|
if v, err = is.Ints(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemSelect.Ints returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// IntX is like Int, but panics if an error occurs.
|
|
func (is *ItemSelect) IntX(ctx context.Context) int {
|
|
v, err := is.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 (is *ItemSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(is.fields) > 1 {
|
|
return nil, errors.New("ent: ItemSelect.Float64s is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []float64
|
|
if err := is.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// Float64sX is like Float64s, but panics if an error occurs.
|
|
func (is *ItemSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := is.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 (is *ItemSelect) Float64(ctx context.Context) (_ float64, err error) {
|
|
var v []float64
|
|
if v, err = is.Float64s(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemSelect.Float64s returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// Float64X is like Float64, but panics if an error occurs.
|
|
func (is *ItemSelect) Float64X(ctx context.Context) float64 {
|
|
v, err := is.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 (is *ItemSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(is.fields) > 1 {
|
|
return nil, errors.New("ent: ItemSelect.Bools is not achievable when selecting more than 1 field")
|
|
}
|
|
var v []bool
|
|
if err := is.Scan(ctx, &v); err != nil {
|
|
return nil, err
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
// BoolsX is like Bools, but panics if an error occurs.
|
|
func (is *ItemSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := is.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 (is *ItemSelect) Bool(ctx context.Context) (_ bool, err error) {
|
|
var v []bool
|
|
if v, err = is.Bools(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(v) {
|
|
case 1:
|
|
return v[0], nil
|
|
case 0:
|
|
err = &NotFoundError{item.Label}
|
|
default:
|
|
err = fmt.Errorf("ent: ItemSelect.Bools returned %d results when one was expected", len(v))
|
|
}
|
|
return
|
|
}
|
|
|
|
// BoolX is like Bool, but panics if an error occurs.
|
|
func (is *ItemSelect) BoolX(ctx context.Context) bool {
|
|
v, err := is.Bool(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (is *ItemSelect) sqlScan(ctx context.Context, v interface{}) error {
|
|
rows := &sql.Rows{}
|
|
query, args := is.sql.Query()
|
|
if err := is.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// Modify adds a query modifier for attaching custom logic to queries.
|
|
func (is *ItemSelect) Modify(modifiers ...func(s *sql.Selector)) *ItemSelect {
|
|
is.modifiers = append(is.modifiers, modifiers...)
|
|
return is
|
|
}
|