mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
658 lines
17 KiB
Go
658 lines
17 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. 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"
|
|
"math"
|
|
|
|
"github.com/facebookincubator/ent/dialect/gremlin"
|
|
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl"
|
|
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl/__"
|
|
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl/g"
|
|
"github.com/facebookincubator/ent/entc/integration/gremlin/ent/predicate"
|
|
"github.com/facebookincubator/ent/entc/integration/gremlin/ent/spec"
|
|
)
|
|
|
|
// SpecQuery is the builder for querying Spec entities.
|
|
type SpecQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
order []OrderFunc
|
|
unique []string
|
|
predicates []predicate.Spec
|
|
// eager-loading edges.
|
|
withCard *CardQuery
|
|
// intermediate query (i.e. traversal path).
|
|
gremlin *dsl.Traversal
|
|
path func(context.Context) (*dsl.Traversal, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the builder.
|
|
func (sq *SpecQuery) Where(ps ...predicate.Spec) *SpecQuery {
|
|
sq.predicates = append(sq.predicates, ps...)
|
|
return sq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (sq *SpecQuery) Limit(limit int) *SpecQuery {
|
|
sq.limit = &limit
|
|
return sq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (sq *SpecQuery) Offset(offset int) *SpecQuery {
|
|
sq.offset = &offset
|
|
return sq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (sq *SpecQuery) Order(o ...OrderFunc) *SpecQuery {
|
|
sq.order = append(sq.order, o...)
|
|
return sq
|
|
}
|
|
|
|
// QueryCard chains the current query on the card edge.
|
|
func (sq *SpecQuery) QueryCard() *CardQuery {
|
|
query := &CardQuery{config: sq.config}
|
|
query.path = func(ctx context.Context) (fromU *dsl.Traversal, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
gremlin := sq.gremlinQuery()
|
|
fromU = gremlin.OutE(spec.CardLabel).InV()
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first Spec entity in the query. Returns *NotFoundError when no spec was found.
|
|
func (sq *SpecQuery) First(ctx context.Context) (*Spec, error) {
|
|
sSlice, err := sq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(sSlice) == 0 {
|
|
return nil, &NotFoundError{spec.Label}
|
|
}
|
|
return sSlice[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (sq *SpecQuery) FirstX(ctx context.Context) *Spec {
|
|
s, err := sq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// FirstID returns the first Spec id in the query. Returns *NotFoundError when no id was found.
|
|
func (sq *SpecQuery) FirstID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = sq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{spec.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstXID is like FirstID, but panics if an error occurs.
|
|
func (sq *SpecQuery) FirstXID(ctx context.Context) string {
|
|
id, err := sq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns the only Spec entity in the query, returns an error if not exactly one entity was returned.
|
|
func (sq *SpecQuery) Only(ctx context.Context) (*Spec, error) {
|
|
sSlice, err := sq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(sSlice) {
|
|
case 1:
|
|
return sSlice[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{spec.Label}
|
|
default:
|
|
return nil, &NotSingularError{spec.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (sq *SpecQuery) OnlyX(ctx context.Context) *Spec {
|
|
s, err := sq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// OnlyID returns the only Spec id in the query, returns an error if not exactly one id was returned.
|
|
func (sq *SpecQuery) OnlyID(ctx context.Context) (id string, err error) {
|
|
var ids []string
|
|
if ids, err = sq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{spec.Label}
|
|
default:
|
|
err = &NotSingularError{spec.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyXID is like OnlyID, but panics if an error occurs.
|
|
func (sq *SpecQuery) OnlyXID(ctx context.Context) string {
|
|
id, err := sq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Specs.
|
|
func (sq *SpecQuery) All(ctx context.Context) ([]*Spec, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.gremlinAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (sq *SpecQuery) AllX(ctx context.Context) []*Spec {
|
|
sSlice, err := sq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return sSlice
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Spec ids.
|
|
func (sq *SpecQuery) IDs(ctx context.Context) ([]string, error) {
|
|
var ids []string
|
|
if err := sq.Select(spec.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (sq *SpecQuery) IDsX(ctx context.Context) []string {
|
|
ids, err := sq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (sq *SpecQuery) Count(ctx context.Context) (int, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return sq.gremlinCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (sq *SpecQuery) 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 *SpecQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return sq.gremlinExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (sq *SpecQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := sq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the query builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (sq *SpecQuery) Clone() *SpecQuery {
|
|
return &SpecQuery{
|
|
config: sq.config,
|
|
limit: sq.limit,
|
|
offset: sq.offset,
|
|
order: append([]OrderFunc{}, sq.order...),
|
|
unique: append([]string{}, sq.unique...),
|
|
predicates: append([]predicate.Spec{}, sq.predicates...),
|
|
// clone intermediate query.
|
|
gremlin: sq.gremlin.Clone(),
|
|
path: sq.path,
|
|
}
|
|
}
|
|
|
|
// WithCard tells the query-builder to eager-loads the nodes that are connected to
|
|
// the "card" edge. The optional arguments used to configure the query builder of the edge.
|
|
func (sq *SpecQuery) WithCard(opts ...func(*CardQuery)) *SpecQuery {
|
|
query := &CardQuery{config: sq.config}
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
sq.withCard = query
|
|
return sq
|
|
}
|
|
|
|
// GroupBy used to group vertices by one or more fields/columns.
|
|
// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
func (sq *SpecQuery) GroupBy(field string, fields ...string) *SpecGroupBy {
|
|
group := &SpecGroupBy{config: sq.config}
|
|
group.fields = append([]string{field}, fields...)
|
|
group.path = func(ctx context.Context) (prev *dsl.Traversal, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.gremlinQuery(), nil
|
|
}
|
|
return group
|
|
}
|
|
|
|
// Select one or more fields from the given query.
|
|
func (sq *SpecQuery) Select(field string, fields ...string) *SpecSelect {
|
|
selector := &SpecSelect{config: sq.config}
|
|
selector.fields = append([]string{field}, fields...)
|
|
selector.path = func(ctx context.Context) (prev *dsl.Traversal, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.gremlinQuery(), nil
|
|
}
|
|
return selector
|
|
}
|
|
|
|
func (sq *SpecQuery) prepareQuery(ctx context.Context) error {
|
|
if sq.path != nil {
|
|
prev, err := sq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sq.gremlin = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sq *SpecQuery) gremlinAll(ctx context.Context) ([]*Spec, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := sq.gremlinQuery().ValueMap(true).Query()
|
|
if err := sq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return nil, err
|
|
}
|
|
var sSlice Specs
|
|
if err := sSlice.FromResponse(res); err != nil {
|
|
return nil, err
|
|
}
|
|
sSlice.config(sq.config)
|
|
return sSlice, nil
|
|
}
|
|
|
|
func (sq *SpecQuery) gremlinCount(ctx context.Context) (int, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := sq.gremlinQuery().Count().Query()
|
|
if err := sq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return 0, err
|
|
}
|
|
return res.ReadInt()
|
|
}
|
|
|
|
func (sq *SpecQuery) gremlinExist(ctx context.Context) (bool, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := sq.gremlinQuery().HasNext().Query()
|
|
if err := sq.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return false, err
|
|
}
|
|
return res.ReadBool()
|
|
}
|
|
|
|
func (sq *SpecQuery) gremlinQuery() *dsl.Traversal {
|
|
v := g.V().HasLabel(spec.Label)
|
|
if sq.gremlin != nil {
|
|
v = sq.gremlin.Clone()
|
|
}
|
|
for _, p := range sq.predicates {
|
|
p(v)
|
|
}
|
|
if len(sq.order) > 0 {
|
|
v.Order()
|
|
for _, p := range sq.order {
|
|
p(v)
|
|
}
|
|
}
|
|
switch limit, offset := sq.limit, sq.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 := sq.unique; len(unique) == 0 {
|
|
v.Dedup()
|
|
}
|
|
return v
|
|
}
|
|
|
|
// SpecGroupBy is the builder for group-by Spec entities.
|
|
type SpecGroupBy struct {
|
|
config
|
|
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 (sgb *SpecGroupBy) Aggregate(fns ...AggregateFunc) *SpecGroupBy {
|
|
sgb.fns = append(sgb.fns, fns...)
|
|
return sgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scan the result into the given value.
|
|
func (sgb *SpecGroupBy) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := sgb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sgb.gremlin = query
|
|
return sgb.gremlinScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (sgb *SpecGroupBy) 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 querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Strings(ctx context.Context) ([]string, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.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 *SpecGroupBy) StringsX(ctx context.Context) []string {
|
|
v, err := sgb.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Ints(ctx context.Context) ([]int, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.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 *SpecGroupBy) IntsX(ctx context.Context) []int {
|
|
v, err := sgb.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.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 *SpecGroupBy) Float64sX(ctx context.Context) []float64 {
|
|
v, err := sgb.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from group-by. It is only allowed when querying group-by with one field.
|
|
func (sgb *SpecGroupBy) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(sgb.fields) > 1 {
|
|
return nil, errors.New("ent: SpecGroupBy.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 *SpecGroupBy) BoolsX(ctx context.Context) []bool {
|
|
v, err := sgb.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (sgb *SpecGroupBy) gremlinScan(ctx context.Context, v interface{}) error {
|
|
res := &gremlin.Response{}
|
|
query, bindings := sgb.gremlinQuery().Query()
|
|
if err := sgb.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return err
|
|
}
|
|
if len(sgb.fields)+len(sgb.fns) == 1 {
|
|
return res.ReadVal(v)
|
|
}
|
|
vm, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return vm.Decode(v)
|
|
}
|
|
|
|
func (sgb *SpecGroupBy) gremlinQuery() *dsl.Traversal {
|
|
var (
|
|
trs []interface{}
|
|
names []interface{}
|
|
)
|
|
for _, fn := range sgb.fns {
|
|
name, tr := fn("p", "")
|
|
trs = append(trs, tr)
|
|
names = append(names, name)
|
|
}
|
|
for _, f := range sgb.fields {
|
|
names = append(names, f)
|
|
trs = append(trs, __.As("p").Unfold().Values(f).As(f))
|
|
}
|
|
return sgb.gremlin.Group().
|
|
By(__.Values(sgb.fields...).Fold()).
|
|
By(__.Fold().Match(trs...).Select(names...)).
|
|
Select(dsl.Values).
|
|
Next()
|
|
}
|
|
|
|
// SpecSelect is the builder for select fields of Spec entities.
|
|
type SpecSelect struct {
|
|
config
|
|
fields []string
|
|
// intermediate query (i.e. traversal path).
|
|
gremlin *dsl.Traversal
|
|
path func(context.Context) (*dsl.Traversal, error)
|
|
}
|
|
|
|
// Scan applies the selector query and scan the result into the given value.
|
|
func (ss *SpecSelect) Scan(ctx context.Context, v interface{}) error {
|
|
query, err := ss.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ss.gremlin = query
|
|
return ss.gremlinScan(ctx, v)
|
|
}
|
|
|
|
// ScanX is like Scan, but panics if an error occurs.
|
|
func (ss *SpecSelect) ScanX(ctx context.Context, v interface{}) {
|
|
if err := ss.Scan(ctx, v); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Strings returns list of strings from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Strings(ctx context.Context) ([]string, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.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 *SpecSelect) StringsX(ctx context.Context) []string {
|
|
v, err := ss.Strings(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Ints returns list of ints from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Ints(ctx context.Context) ([]int, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.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 *SpecSelect) IntsX(ctx context.Context) []int {
|
|
v, err := ss.Ints(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Float64s returns list of float64s from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Float64s(ctx context.Context) ([]float64, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.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 *SpecSelect) Float64sX(ctx context.Context) []float64 {
|
|
v, err := ss.Float64s(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Bools returns list of bools from selector. It is only allowed when selecting one field.
|
|
func (ss *SpecSelect) Bools(ctx context.Context) ([]bool, error) {
|
|
if len(ss.fields) > 1 {
|
|
return nil, errors.New("ent: SpecSelect.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 *SpecSelect) BoolsX(ctx context.Context) []bool {
|
|
v, err := ss.Bools(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
func (ss *SpecSelect) gremlinScan(ctx context.Context, v interface{}) error {
|
|
var (
|
|
traversal *dsl.Traversal
|
|
res = &gremlin.Response{}
|
|
)
|
|
if len(ss.fields) == 1 {
|
|
if ss.fields[0] != spec.FieldID {
|
|
traversal = ss.gremlin.Values(ss.fields...)
|
|
} else {
|
|
traversal = ss.gremlin.ID()
|
|
}
|
|
} else {
|
|
fields := make([]interface{}, len(ss.fields))
|
|
for i, f := range ss.fields {
|
|
fields[i] = f
|
|
}
|
|
traversal = ss.gremlin.ValueMap(fields...)
|
|
}
|
|
query, bindings := traversal.Query()
|
|
if err := ss.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return err
|
|
}
|
|
if len(ss.fields) == 1 {
|
|
return res.ReadVal(v)
|
|
}
|
|
vm, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return vm.Decode(v)
|
|
}
|