mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
534 lines
14 KiB
Go
534 lines
14 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 ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/gremlin"
|
|
"entgo.io/ent/dialect/gremlin/graph/dsl"
|
|
"entgo.io/ent/dialect/gremlin/graph/dsl/__"
|
|
"entgo.io/ent/dialect/gremlin/graph/dsl/g"
|
|
"entgo.io/ent/entc/integration/gremlin/ent/group"
|
|
"entgo.io/ent/entc/integration/gremlin/ent/groupinfo"
|
|
"entgo.io/ent/entc/integration/gremlin/ent/predicate"
|
|
)
|
|
|
|
// GroupInfoQuery is the builder for querying GroupInfo entities.
|
|
type GroupInfoQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
unique *bool
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.GroupInfo
|
|
withGroups *GroupQuery
|
|
// intermediate query (i.e. traversal path).
|
|
gremlin *dsl.Traversal
|
|
path func(context.Context) (*dsl.Traversal, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the GroupInfoQuery builder.
|
|
func (giq *GroupInfoQuery) Where(ps ...predicate.GroupInfo) *GroupInfoQuery {
|
|
giq.predicates = append(giq.predicates, ps...)
|
|
return giq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (giq *GroupInfoQuery) Limit(limit int) *GroupInfoQuery {
|
|
giq.limit = &limit
|
|
return giq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (giq *GroupInfoQuery) Offset(offset int) *GroupInfoQuery {
|
|
giq.offset = &offset
|
|
return giq
|
|
}
|
|
|
|
// 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 (giq *GroupInfoQuery) Unique(unique bool) *GroupInfoQuery {
|
|
giq.unique = &unique
|
|
return giq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (giq *GroupInfoQuery) Order(o ...OrderFunc) *GroupInfoQuery {
|
|
giq.order = append(giq.order, o...)
|
|
return giq
|
|
}
|
|
|
|
// QueryGroups chains the current query on the "groups" edge.
|
|
func (giq *GroupInfoQuery) QueryGroups() *GroupQuery {
|
|
query := &GroupQuery{config: giq.config}
|
|
query.path = func(ctx context.Context) (fromU *dsl.Traversal, err error) {
|
|
if err := giq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
gremlin := giq.gremlinQuery(ctx)
|
|
fromU = gremlin.InE(group.InfoLabel).OutV()
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first GroupInfo entity from the query.
|
|
// Returns a *NotFoundError when no GroupInfo was found.
|
|
func (giq *GroupInfoQuery) First(ctx context.Context) (*GroupInfo, error) {
|
|
nodes, err := giq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{groupinfo.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) FirstX(ctx context.Context) *GroupInfo {
|
|
node, err := giq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first GroupInfo ID from the query.
|
|
// Returns a *NotFoundError when no GroupInfo ID was found.
|
|
func (giq *GroupInfoQuery) FirstID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = giq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{groupinfo.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) FirstIDX(ctx context.Context) string {
|
|
id, err := giq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single GroupInfo entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one GroupInfo entity is found.
|
|
// Returns a *NotFoundError when no GroupInfo entities are found.
|
|
func (giq *GroupInfoQuery) Only(ctx context.Context) (*GroupInfo, error) {
|
|
nodes, err := giq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{groupinfo.Label}
|
|
default:
|
|
return nil, &NotSingularError{groupinfo.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) OnlyX(ctx context.Context) *GroupInfo {
|
|
node, err := giq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only GroupInfo ID in the query.
|
|
// Returns a *NotSingularError when more than one GroupInfo ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (giq *GroupInfoQuery) OnlyID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = giq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{groupinfo.Label}
|
|
default:
|
|
err = &NotSingularError{groupinfo.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) OnlyIDX(ctx context.Context) string {
|
|
id, err := giq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of GroupInfos.
|
|
func (giq *GroupInfoQuery) All(ctx context.Context) ([]*GroupInfo, error) {
|
|
if err := giq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return giq.gremlinAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) AllX(ctx context.Context) []*GroupInfo {
|
|
nodes, err := giq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of GroupInfo IDs.
|
|
func (giq *GroupInfoQuery) IDs(ctx context.Context) ([]string, error) {
|
|
var ids []string
|
|
if err := giq.Select(groupinfo.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) IDsX(ctx context.Context) []string {
|
|
ids, err := giq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (giq *GroupInfoQuery) Count(ctx context.Context) (int, error) {
|
|
if err := giq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return giq.gremlinCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) CountX(ctx context.Context) int {
|
|
count, err := giq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (giq *GroupInfoQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := giq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return giq.gremlinExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (giq *GroupInfoQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := giq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the GroupInfoQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (giq *GroupInfoQuery) Clone() *GroupInfoQuery {
|
|
if giq == nil {
|
|
return nil
|
|
}
|
|
return &GroupInfoQuery{
|
|
config: giq.config,
|
|
limit: giq.limit,
|
|
offset: giq.offset,
|
|
order: append([]OrderFunc{}, giq.order...),
|
|
predicates: append([]predicate.GroupInfo{}, giq.predicates...),
|
|
withGroups: giq.withGroups.Clone(),
|
|
// clone intermediate query.
|
|
gremlin: giq.gremlin.Clone(),
|
|
path: giq.path,
|
|
unique: giq.unique,
|
|
}
|
|
}
|
|
|
|
// WithGroups tells the query-builder to eager-load the nodes that are connected to
|
|
// the "groups" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (giq *GroupInfoQuery) WithGroups(opts ...func(*GroupQuery)) *GroupInfoQuery {
|
|
query := &GroupQuery{config: giq.config}
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
giq.withGroups = query
|
|
return giq
|
|
}
|
|
|
|
// 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 {
|
|
// Desc string `json:"desc,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.GroupInfo.Query().
|
|
// GroupBy(groupinfo.FieldDesc).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (giq *GroupInfoQuery) GroupBy(field string, fields ...string) *GroupInfoGroupBy {
|
|
grbuild := &GroupInfoGroupBy{config: giq.config}
|
|
grbuild.fields = append([]string{field}, fields...)
|
|
grbuild.path = func(ctx context.Context) (prev *dsl.Traversal, err error) {
|
|
if err := giq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return giq.gremlinQuery(ctx), nil
|
|
}
|
|
grbuild.label = groupinfo.Label
|
|
grbuild.flds, grbuild.scan = &grbuild.fields, 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 {
|
|
// Desc string `json:"desc,omitempty"`
|
|
// }
|
|
//
|
|
// client.GroupInfo.Query().
|
|
// Select(groupinfo.FieldDesc).
|
|
// Scan(ctx, &v)
|
|
func (giq *GroupInfoQuery) Select(fields ...string) *GroupInfoSelect {
|
|
giq.fields = append(giq.fields, fields...)
|
|
selbuild := &GroupInfoSelect{GroupInfoQuery: giq}
|
|
selbuild.label = groupinfo.Label
|
|
selbuild.flds, selbuild.scan = &giq.fields, selbuild.Scan
|
|
return selbuild
|
|
}
|
|
|
|
// Aggregate returns a GroupInfoSelect configured with the given aggregations.
|
|
func (giq *GroupInfoQuery) Aggregate(fns ...AggregateFunc) *GroupInfoSelect {
|
|
return giq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (giq *GroupInfoQuery) prepareQuery(ctx context.Context) error {
|
|
if giq.path != nil {
|
|
prev, err := giq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
giq.gremlin = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (giq *GroupInfoQuery) gremlinAll(ctx context.Context) ([]*GroupInfo, error) {
|
|
res := &gremlin.Response{}
|
|
traversal := giq.gremlinQuery(ctx)
|
|
if len(giq.fields) > 0 {
|
|
fields := make([]any, len(giq.fields))
|
|
for i, f := range giq.fields {
|
|
fields[i] = f
|
|
}
|
|
traversal.ValueMap(fields...)
|
|
} else {
|
|
traversal.ValueMap(true)
|
|
}
|
|
query, bindings := traversal.Query()
|
|
if err := giq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return nil, err
|
|
}
|
|
var gis GroupInfos
|
|
if err := gis.FromResponse(res); err != nil {
|
|
return nil, err
|
|
}
|
|
gis.config(giq.config)
|
|
return gis, nil
|
|
}
|
|
|
|
func (giq *GroupInfoQuery) gremlinCount(ctx context.Context) (int, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := giq.gremlinQuery(ctx).Count().Query()
|
|
if err := giq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return 0, err
|
|
}
|
|
return res.ReadInt()
|
|
}
|
|
|
|
func (giq *GroupInfoQuery) gremlinExist(ctx context.Context) (bool, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := giq.gremlinQuery(ctx).HasNext().Query()
|
|
if err := giq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return false, err
|
|
}
|
|
return res.ReadBool()
|
|
}
|
|
|
|
func (giq *GroupInfoQuery) gremlinQuery(context.Context) *dsl.Traversal {
|
|
v := g.V().HasLabel(groupinfo.Label)
|
|
if giq.gremlin != nil {
|
|
v = giq.gremlin.Clone()
|
|
}
|
|
for _, p := range giq.predicates {
|
|
p(v)
|
|
}
|
|
if len(giq.order) > 0 {
|
|
v.Order()
|
|
for _, p := range giq.order {
|
|
p(v)
|
|
}
|
|
}
|
|
switch limit, offset := giq.limit, giq.offset; {
|
|
case limit != nil && offset != nil:
|
|
v.Range(*offset, *offset+*limit)
|
|
case offset != nil:
|
|
v.Range(*offset, math.MaxInt32)
|
|
case limit != nil:
|
|
v.Limit(*limit)
|
|
}
|
|
if unique := giq.unique; unique == nil || *unique {
|
|
v.Dedup()
|
|
}
|
|
return v
|
|
}
|
|
|
|
// GroupInfoGroupBy is the group-by builder for GroupInfo entities.
|
|
type GroupInfoGroupBy struct {
|
|
config
|
|
selector
|
|
fields []string
|
|
fns []AggregateFunc
|
|
// intermediate query (i.e. traversal path).
|
|
gremlin *dsl.Traversal
|
|
path func(context.Context) (*dsl.Traversal, error)
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (gigb *GroupInfoGroupBy) Aggregate(fns ...AggregateFunc) *GroupInfoGroupBy {
|
|
gigb.fns = append(gigb.fns, fns...)
|
|
return gigb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (gigb *GroupInfoGroupBy) Scan(ctx context.Context, v any) error {
|
|
query, err := gigb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
gigb.gremlin = query
|
|
return gigb.gremlinScan(ctx, v)
|
|
}
|
|
|
|
func (gigb *GroupInfoGroupBy) gremlinScan(ctx context.Context, v any) error {
|
|
res := &gremlin.Response{}
|
|
query, bindings := gigb.gremlinQuery().Query()
|
|
if err := gigb.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return err
|
|
}
|
|
if len(gigb.fields)+len(gigb.fns) == 1 {
|
|
return res.ReadVal(v)
|
|
}
|
|
vm, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return vm.Decode(v)
|
|
}
|
|
|
|
func (gigb *GroupInfoGroupBy) gremlinQuery() *dsl.Traversal {
|
|
var (
|
|
trs []any
|
|
names []any
|
|
)
|
|
for _, fn := range gigb.fns {
|
|
name, tr := fn("p", "")
|
|
trs = append(trs, tr)
|
|
names = append(names, name)
|
|
}
|
|
for _, f := range gigb.fields {
|
|
names = append(names, f)
|
|
trs = append(trs, __.As("p").Unfold().Values(f).As(f))
|
|
}
|
|
return gigb.gremlin.Group().
|
|
By(__.Values(gigb.fields...).Fold()).
|
|
By(__.Fold().Match(trs...).Select(names...)).
|
|
Select(dsl.Values).
|
|
Next()
|
|
}
|
|
|
|
// GroupInfoSelect is the builder for selecting fields of GroupInfo entities.
|
|
type GroupInfoSelect struct {
|
|
*GroupInfoQuery
|
|
selector
|
|
// intermediate query (i.e. traversal path).
|
|
gremlin *dsl.Traversal
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (gis *GroupInfoSelect) Aggregate(fns ...AggregateFunc) *GroupInfoSelect {
|
|
gis.fns = append(gis.fns, fns...)
|
|
return gis
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (gis *GroupInfoSelect) Scan(ctx context.Context, v any) error {
|
|
if err := gis.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
gis.gremlin = gis.GroupInfoQuery.gremlinQuery(ctx)
|
|
return gis.gremlinScan(ctx, v)
|
|
}
|
|
|
|
func (gis *GroupInfoSelect) gremlinScan(ctx context.Context, v any) error {
|
|
var (
|
|
traversal *dsl.Traversal
|
|
res = &gremlin.Response{}
|
|
)
|
|
if len(gis.fields) == 1 {
|
|
if gis.fields[0] != groupinfo.FieldID {
|
|
traversal = gis.gremlin.Values(gis.fields...)
|
|
} else {
|
|
traversal = gis.gremlin.ID()
|
|
}
|
|
} else {
|
|
fields := make([]any, len(gis.fields))
|
|
for i, f := range gis.fields {
|
|
fields[i] = f
|
|
}
|
|
traversal = gis.gremlin.ValueMap(fields...)
|
|
}
|
|
query, bindings := traversal.Query()
|
|
if err := gis.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return err
|
|
}
|
|
if len(gis.fields) == 1 {
|
|
return res.ReadVal(v)
|
|
}
|
|
vm, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return vm.Decode(v)
|
|
}
|