Files
ent/entc/integration/gremlin/ent/spec_delete.go
Ariel Mashraki 7a480e3943 entc/gen: use more go-ish names for generated error types (#321)
* entc/gen: use more go-ish names for generated error types

* entc/gen: add NotLodedError type for eager-load api
2020-01-28 11:04:27 +02:00

85 lines
2.2 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"
"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"
)
// SpecDelete is the builder for deleting a Spec entity.
type SpecDelete struct {
config
predicates []predicate.Spec
}
// Where adds a new predicate to the delete builder.
func (sd *SpecDelete) Where(ps ...predicate.Spec) *SpecDelete {
sd.predicates = append(sd.predicates, ps...)
return sd
}
// Exec executes the deletion query and returns how many vertices were deleted.
func (sd *SpecDelete) Exec(ctx context.Context) (int, error) {
return sd.gremlinExec(ctx)
}
// ExecX is like Exec, but panics if an error occurs.
func (sd *SpecDelete) ExecX(ctx context.Context) int {
n, err := sd.Exec(ctx)
if err != nil {
panic(err)
}
return n
}
func (sd *SpecDelete) gremlinExec(ctx context.Context) (int, error) {
res := &gremlin.Response{}
query, bindings := sd.gremlin().Query()
if err := sd.driver.Exec(ctx, query, bindings, res); err != nil {
return 0, err
}
return res.ReadInt()
}
func (sd *SpecDelete) gremlin() *dsl.Traversal {
t := g.V().HasLabel(spec.Label)
for _, p := range sd.predicates {
p(t)
}
return t.SideEffect(__.Drop()).Count()
}
// SpecDeleteOne is the builder for deleting a single Spec entity.
type SpecDeleteOne struct {
sd *SpecDelete
}
// Exec executes the deletion query.
func (sdo *SpecDeleteOne) Exec(ctx context.Context) error {
n, err := sdo.sd.Exec(ctx)
switch {
case err != nil:
return err
case n == 0:
return &NotFoundError{spec.Label}
default:
return nil
}
}
// ExecX is like Exec, but panics if an error occurs.
func (sdo *SpecDeleteOne) ExecX(ctx context.Context) {
sdo.sd.ExecX(ctx)
}