You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
628 lines
18 KiB
Go
628 lines
18 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/predicate"
|
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/user"
|
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/usersocial"
|
|
)
|
|
|
|
// UserSocialQuery is the builder for querying UserSocial entities.
|
|
type UserSocialQuery struct {
|
|
config
|
|
ctx *QueryContext
|
|
order []usersocial.OrderOption
|
|
inters []Interceptor
|
|
predicates []predicate.UserSocial
|
|
withUser *UserQuery
|
|
modifiers []func(*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 UserSocialQuery builder.
|
|
func (usq *UserSocialQuery) Where(ps ...predicate.UserSocial) *UserSocialQuery {
|
|
usq.predicates = append(usq.predicates, ps...)
|
|
return usq
|
|
}
|
|
|
|
// Limit the number of records to be returned by this query.
|
|
func (usq *UserSocialQuery) Limit(limit int) *UserSocialQuery {
|
|
usq.ctx.Limit = &limit
|
|
return usq
|
|
}
|
|
|
|
// Offset to start from.
|
|
func (usq *UserSocialQuery) Offset(offset int) *UserSocialQuery {
|
|
usq.ctx.Offset = &offset
|
|
return usq
|
|
}
|
|
|
|
// 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 (usq *UserSocialQuery) Unique(unique bool) *UserSocialQuery {
|
|
usq.ctx.Unique = &unique
|
|
return usq
|
|
}
|
|
|
|
// Order specifies how the records should be ordered.
|
|
func (usq *UserSocialQuery) Order(o ...usersocial.OrderOption) *UserSocialQuery {
|
|
usq.order = append(usq.order, o...)
|
|
return usq
|
|
}
|
|
|
|
// QueryUser chains the current query on the "user" edge.
|
|
func (usq *UserSocialQuery) QueryUser() *UserQuery {
|
|
query := (&UserClient{config: usq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := usq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := usq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(usersocial.Table, usersocial.FieldID, selector),
|
|
sqlgraph.To(user.Table, user.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, usersocial.UserTable, usersocial.UserColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(usq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first UserSocial entity from the query.
|
|
// Returns a *NotFoundError when no UserSocial was found.
|
|
func (usq *UserSocialQuery) First(ctx context.Context) (*UserSocial, error) {
|
|
nodes, err := usq.Limit(1).All(setContextOp(ctx, usq.ctx, "First"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{usersocial.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) FirstX(ctx context.Context) *UserSocial {
|
|
node, err := usq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first UserSocial ID from the query.
|
|
// Returns a *NotFoundError when no UserSocial ID was found.
|
|
func (usq *UserSocialQuery) FirstID(ctx context.Context) (id int64, err error) {
|
|
var ids []int64
|
|
if ids, err = usq.Limit(1).IDs(setContextOp(ctx, usq.ctx, "FirstID")); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{usersocial.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) FirstIDX(ctx context.Context) int64 {
|
|
id, err := usq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single UserSocial entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one UserSocial entity is found.
|
|
// Returns a *NotFoundError when no UserSocial entities are found.
|
|
func (usq *UserSocialQuery) Only(ctx context.Context) (*UserSocial, error) {
|
|
nodes, err := usq.Limit(2).All(setContextOp(ctx, usq.ctx, "Only"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{usersocial.Label}
|
|
default:
|
|
return nil, &NotSingularError{usersocial.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) OnlyX(ctx context.Context) *UserSocial {
|
|
node, err := usq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only UserSocial ID in the query.
|
|
// Returns a *NotSingularError when more than one UserSocial ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (usq *UserSocialQuery) OnlyID(ctx context.Context) (id int64, err error) {
|
|
var ids []int64
|
|
if ids, err = usq.Limit(2).IDs(setContextOp(ctx, usq.ctx, "OnlyID")); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{usersocial.Label}
|
|
default:
|
|
err = &NotSingularError{usersocial.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) OnlyIDX(ctx context.Context) int64 {
|
|
id, err := usq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of UserSocials.
|
|
func (usq *UserSocialQuery) All(ctx context.Context) ([]*UserSocial, error) {
|
|
ctx = setContextOp(ctx, usq.ctx, "All")
|
|
if err := usq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
qr := querierAll[[]*UserSocial, *UserSocialQuery]()
|
|
return withInterceptors[[]*UserSocial](ctx, usq, qr, usq.inters)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) AllX(ctx context.Context) []*UserSocial {
|
|
nodes, err := usq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of UserSocial IDs.
|
|
func (usq *UserSocialQuery) IDs(ctx context.Context) (ids []int64, err error) {
|
|
if usq.ctx.Unique == nil && usq.path != nil {
|
|
usq.Unique(true)
|
|
}
|
|
ctx = setContextOp(ctx, usq.ctx, "IDs")
|
|
if err = usq.Select(usersocial.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) IDsX(ctx context.Context) []int64 {
|
|
ids, err := usq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (usq *UserSocialQuery) Count(ctx context.Context) (int, error) {
|
|
ctx = setContextOp(ctx, usq.ctx, "Count")
|
|
if err := usq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return withInterceptors[int](ctx, usq, querierCount[*UserSocialQuery](), usq.inters)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) CountX(ctx context.Context) int {
|
|
count, err := usq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (usq *UserSocialQuery) Exist(ctx context.Context) (bool, error) {
|
|
ctx = setContextOp(ctx, usq.ctx, "Exist")
|
|
switch _, err := usq.FirstID(ctx); {
|
|
case IsNotFound(err):
|
|
return false, nil
|
|
case err != nil:
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
default:
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (usq *UserSocialQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := usq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the UserSocialQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (usq *UserSocialQuery) Clone() *UserSocialQuery {
|
|
if usq == nil {
|
|
return nil
|
|
}
|
|
return &UserSocialQuery{
|
|
config: usq.config,
|
|
ctx: usq.ctx.Clone(),
|
|
order: append([]usersocial.OrderOption{}, usq.order...),
|
|
inters: append([]Interceptor{}, usq.inters...),
|
|
predicates: append([]predicate.UserSocial{}, usq.predicates...),
|
|
withUser: usq.withUser.Clone(),
|
|
// clone intermediate query.
|
|
sql: usq.sql.Clone(),
|
|
path: usq.path,
|
|
}
|
|
}
|
|
|
|
// WithUser tells the query-builder to eager-load the nodes that are connected to
|
|
// the "user" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (usq *UserSocialQuery) WithUser(opts ...func(*UserQuery)) *UserSocialQuery {
|
|
query := (&UserClient{config: usq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
usq.withUser = query
|
|
return usq
|
|
}
|
|
|
|
// 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 {
|
|
// CreatedAt time.Time `json:"created_at,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.UserSocial.Query().
|
|
// GroupBy(usersocial.FieldCreatedAt).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (usq *UserSocialQuery) GroupBy(field string, fields ...string) *UserSocialGroupBy {
|
|
usq.ctx.Fields = append([]string{field}, fields...)
|
|
grbuild := &UserSocialGroupBy{build: usq}
|
|
grbuild.flds = &usq.ctx.Fields
|
|
grbuild.label = usersocial.Label
|
|
grbuild.scan = grbuild.Scan
|
|
return grbuild
|
|
}
|
|
|
|
// 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 {
|
|
// CreatedAt time.Time `json:"created_at,omitempty"`
|
|
// }
|
|
//
|
|
// client.UserSocial.Query().
|
|
// Select(usersocial.FieldCreatedAt).
|
|
// Scan(ctx, &v)
|
|
func (usq *UserSocialQuery) Select(fields ...string) *UserSocialSelect {
|
|
usq.ctx.Fields = append(usq.ctx.Fields, fields...)
|
|
sbuild := &UserSocialSelect{UserSocialQuery: usq}
|
|
sbuild.label = usersocial.Label
|
|
sbuild.flds, sbuild.scan = &usq.ctx.Fields, sbuild.Scan
|
|
return sbuild
|
|
}
|
|
|
|
// Aggregate returns a UserSocialSelect configured with the given aggregations.
|
|
func (usq *UserSocialQuery) Aggregate(fns ...AggregateFunc) *UserSocialSelect {
|
|
return usq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (usq *UserSocialQuery) prepareQuery(ctx context.Context) error {
|
|
for _, inter := range usq.inters {
|
|
if inter == nil {
|
|
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
|
|
}
|
|
if trv, ok := inter.(Traverser); ok {
|
|
if err := trv.Traverse(ctx, usq); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
for _, f := range usq.ctx.Fields {
|
|
if !usersocial.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if usq.path != nil {
|
|
prev, err := usq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
usq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (usq *UserSocialQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*UserSocial, error) {
|
|
var (
|
|
nodes = []*UserSocial{}
|
|
_spec = usq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
usq.withUser != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*UserSocial).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &UserSocial{config: usq.config}
|
|
nodes = append(nodes, node)
|
|
node.Edges.loadedTypes = loadedTypes
|
|
return node.assignValues(columns, values)
|
|
}
|
|
if len(usq.modifiers) > 0 {
|
|
_spec.Modifiers = usq.modifiers
|
|
}
|
|
for i := range hooks {
|
|
hooks[i](ctx, _spec)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, usq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := usq.withUser; query != nil {
|
|
if err := usq.loadUser(ctx, query, nodes, nil,
|
|
func(n *UserSocial, e *User) { n.Edges.User = e }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (usq *UserSocialQuery) loadUser(ctx context.Context, query *UserQuery, nodes []*UserSocial, init func(*UserSocial), assign func(*UserSocial, *User)) error {
|
|
ids := make([]int64, 0, len(nodes))
|
|
nodeids := make(map[int64][]*UserSocial)
|
|
for i := range nodes {
|
|
fk := nodes[i].UserID
|
|
if _, ok := nodeids[fk]; !ok {
|
|
ids = append(ids, fk)
|
|
}
|
|
nodeids[fk] = append(nodeids[fk], nodes[i])
|
|
}
|
|
if len(ids) == 0 {
|
|
return nil
|
|
}
|
|
query.Where(user.IDIn(ids...))
|
|
neighbors, err := query.All(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
nodes, ok := nodeids[n.ID]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected foreign-key "user_id" returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
assign(nodes[i], n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (usq *UserSocialQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := usq.querySpec()
|
|
if len(usq.modifiers) > 0 {
|
|
_spec.Modifiers = usq.modifiers
|
|
}
|
|
_spec.Node.Columns = usq.ctx.Fields
|
|
if len(usq.ctx.Fields) > 0 {
|
|
_spec.Unique = usq.ctx.Unique != nil && *usq.ctx.Unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, usq.driver, _spec)
|
|
}
|
|
|
|
func (usq *UserSocialQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := sqlgraph.NewQuerySpec(usersocial.Table, usersocial.Columns, sqlgraph.NewFieldSpec(usersocial.FieldID, field.TypeInt64))
|
|
_spec.From = usq.sql
|
|
if unique := usq.ctx.Unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
} else if usq.path != nil {
|
|
_spec.Unique = true
|
|
}
|
|
if fields := usq.ctx.Fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, usersocial.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != usersocial.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
if usq.withUser != nil {
|
|
_spec.Node.AddColumnOnce(usersocial.FieldUserID)
|
|
}
|
|
}
|
|
if ps := usq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := usq.ctx.Limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := usq.ctx.Offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := usq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (usq *UserSocialQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(usq.driver.Dialect())
|
|
t1 := builder.Table(usersocial.Table)
|
|
columns := usq.ctx.Fields
|
|
if len(columns) == 0 {
|
|
columns = usersocial.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if usq.sql != nil {
|
|
selector = usq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if usq.ctx.Unique != nil && *usq.ctx.Unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, m := range usq.modifiers {
|
|
m(selector)
|
|
}
|
|
for _, p := range usq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range usq.order {
|
|
p(selector)
|
|
}
|
|
if offset := usq.ctx.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 := usq.ctx.Limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// Modify adds a query modifier for attaching custom logic to queries.
|
|
func (usq *UserSocialQuery) Modify(modifiers ...func(s *sql.Selector)) *UserSocialSelect {
|
|
usq.modifiers = append(usq.modifiers, modifiers...)
|
|
return usq.Select()
|
|
}
|
|
|
|
// UserSocialGroupBy is the group-by builder for UserSocial entities.
|
|
type UserSocialGroupBy struct {
|
|
selector
|
|
build *UserSocialQuery
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (usgb *UserSocialGroupBy) Aggregate(fns ...AggregateFunc) *UserSocialGroupBy {
|
|
usgb.fns = append(usgb.fns, fns...)
|
|
return usgb
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (usgb *UserSocialGroupBy) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, usgb.build.ctx, "GroupBy")
|
|
if err := usgb.build.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*UserSocialQuery, *UserSocialGroupBy](ctx, usgb.build, usgb, usgb.build.inters, v)
|
|
}
|
|
|
|
func (usgb *UserSocialGroupBy) sqlScan(ctx context.Context, root *UserSocialQuery, v any) error {
|
|
selector := root.sqlQuery(ctx).Select()
|
|
aggregation := make([]string, 0, len(usgb.fns))
|
|
for _, fn := range usgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(*usgb.flds)+len(usgb.fns))
|
|
for _, f := range *usgb.flds {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
selector.GroupBy(selector.Columns(*usgb.flds...)...)
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := usgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// UserSocialSelect is the builder for selecting fields of UserSocial entities.
|
|
type UserSocialSelect struct {
|
|
*UserSocialQuery
|
|
selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (uss *UserSocialSelect) Aggregate(fns ...AggregateFunc) *UserSocialSelect {
|
|
uss.fns = append(uss.fns, fns...)
|
|
return uss
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (uss *UserSocialSelect) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, uss.ctx, "Select")
|
|
if err := uss.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*UserSocialQuery, *UserSocialSelect](ctx, uss.UserSocialQuery, uss, uss.inters, v)
|
|
}
|
|
|
|
func (uss *UserSocialSelect) sqlScan(ctx context.Context, root *UserSocialQuery, v any) error {
|
|
selector := root.sqlQuery(ctx)
|
|
aggregation := make([]string, 0, len(uss.fns))
|
|
for _, fn := range uss.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
switch n := len(*uss.selector.flds); {
|
|
case n == 0 && len(aggregation) > 0:
|
|
selector.Select(aggregation...)
|
|
case n != 0 && len(aggregation) > 0:
|
|
selector.AppendSelect(aggregation...)
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := uss.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 (uss *UserSocialSelect) Modify(modifiers ...func(s *sql.Selector)) *UserSocialSelect {
|
|
uss.modifiers = append(uss.modifiers, modifiers...)
|
|
return uss
|
|
}
|