mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
33 lines
952 B
Cheetah
33 lines
952 B
Cheetah
{{/*
|
|
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.
|
|
*/}}
|
|
|
|
{{/* gotype: entgo.io/ent/entc/gen.typeScope */}}
|
|
|
|
{{ define "dialect/gremlin/delete" }}
|
|
{{ $builder := pascal $.Scope.Builder }}
|
|
{{ $receiver := $.Scope.Receiver }}
|
|
{{ $mutation := print $receiver ".mutation" }}
|
|
|
|
func ({{ $receiver}} *{{ $builder }}) gremlinExec(ctx context.Context) (int, error) {
|
|
res := &gremlin.Response{}
|
|
query, bindings := {{ $receiver }}.gremlin().Query()
|
|
if err := {{ $receiver }}.driver.Exec(ctx, query, bindings, res); err != nil {
|
|
return 0, err
|
|
}
|
|
{{ $mutation }}.done = true
|
|
return res.ReadInt()
|
|
}
|
|
|
|
|
|
func ({{ $receiver }} *{{ $builder }}) gremlin() *dsl.Traversal {
|
|
t := g.V().HasLabel({{ $.Package }}.Label)
|
|
for _, p := range {{ $mutation }}.predicates {
|
|
p(t)
|
|
}
|
|
return t.SideEffect(__.Drop()).Count()
|
|
}
|
|
{{ end }}
|