Files
ent/entc/integration/gremlin/ent/comment/where.go
2020-02-09 11:38:03 +02:00

348 lines
9.9 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 comment
import (
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl"
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl/__"
"github.com/facebookincubator/ent/dialect/gremlin/graph/dsl/p"
"github.com/facebookincubator/ent/entc/integration/gremlin/ent/predicate"
)
// ID filters vertices based on their identifier.
func ID(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(id)
})
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.EQ(id))
})
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.NEQ(id))
})
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
v := make([]interface{}, len(ids))
for i := range v {
v[i] = ids[i]
}
t.HasID(p.Within(v...))
})
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
v := make([]interface{}, len(ids))
for i := range v {
v[i] = ids[i]
}
t.HasID(p.Without(v...))
})
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.GT(id))
})
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.GTE(id))
})
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.LT(id))
})
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id string) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasID(p.LTE(id))
})
}
// UniqueInt applies equality check predicate on the "unique_int" field. It's identical to UniqueIntEQ.
func UniqueInt(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.EQ(v))
})
}
// UniqueFloat applies equality check predicate on the "unique_float" field. It's identical to UniqueFloatEQ.
func UniqueFloat(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.EQ(v))
})
}
// NillableInt applies equality check predicate on the "nillable_int" field. It's identical to NillableIntEQ.
func NillableInt(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.EQ(v))
})
}
// UniqueIntEQ applies the EQ predicate on the "unique_int" field.
func UniqueIntEQ(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.EQ(v))
})
}
// UniqueIntNEQ applies the NEQ predicate on the "unique_int" field.
func UniqueIntNEQ(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.NEQ(v))
})
}
// UniqueIntIn applies the In predicate on the "unique_int" field.
func UniqueIntIn(vs ...int) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.Within(v...))
})
}
// UniqueIntNotIn applies the NotIn predicate on the "unique_int" field.
func UniqueIntNotIn(vs ...int) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.Without(v...))
})
}
// UniqueIntGT applies the GT predicate on the "unique_int" field.
func UniqueIntGT(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.GT(v))
})
}
// UniqueIntGTE applies the GTE predicate on the "unique_int" field.
func UniqueIntGTE(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.GTE(v))
})
}
// UniqueIntLT applies the LT predicate on the "unique_int" field.
func UniqueIntLT(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.LT(v))
})
}
// UniqueIntLTE applies the LTE predicate on the "unique_int" field.
func UniqueIntLTE(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueInt, p.LTE(v))
})
}
// UniqueFloatEQ applies the EQ predicate on the "unique_float" field.
func UniqueFloatEQ(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.EQ(v))
})
}
// UniqueFloatNEQ applies the NEQ predicate on the "unique_float" field.
func UniqueFloatNEQ(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.NEQ(v))
})
}
// UniqueFloatIn applies the In predicate on the "unique_float" field.
func UniqueFloatIn(vs ...float64) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.Within(v...))
})
}
// UniqueFloatNotIn applies the NotIn predicate on the "unique_float" field.
func UniqueFloatNotIn(vs ...float64) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.Without(v...))
})
}
// UniqueFloatGT applies the GT predicate on the "unique_float" field.
func UniqueFloatGT(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.GT(v))
})
}
// UniqueFloatGTE applies the GTE predicate on the "unique_float" field.
func UniqueFloatGTE(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.GTE(v))
})
}
// UniqueFloatLT applies the LT predicate on the "unique_float" field.
func UniqueFloatLT(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.LT(v))
})
}
// UniqueFloatLTE applies the LTE predicate on the "unique_float" field.
func UniqueFloatLTE(v float64) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldUniqueFloat, p.LTE(v))
})
}
// NillableIntEQ applies the EQ predicate on the "nillable_int" field.
func NillableIntEQ(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.EQ(v))
})
}
// NillableIntNEQ applies the NEQ predicate on the "nillable_int" field.
func NillableIntNEQ(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.NEQ(v))
})
}
// NillableIntIn applies the In predicate on the "nillable_int" field.
func NillableIntIn(vs ...int) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.Within(v...))
})
}
// NillableIntNotIn applies the NotIn predicate on the "nillable_int" field.
func NillableIntNotIn(vs ...int) predicate.Comment {
v := make([]interface{}, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.Without(v...))
})
}
// NillableIntGT applies the GT predicate on the "nillable_int" field.
func NillableIntGT(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.GT(v))
})
}
// NillableIntGTE applies the GTE predicate on the "nillable_int" field.
func NillableIntGTE(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.GTE(v))
})
}
// NillableIntLT applies the LT predicate on the "nillable_int" field.
func NillableIntLT(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.LT(v))
})
}
// NillableIntLTE applies the LTE predicate on the "nillable_int" field.
func NillableIntLTE(v int) predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.Has(Label, FieldNillableInt, p.LTE(v))
})
}
// NillableIntIsNil applies the IsNil predicate on the "nillable_int" field.
func NillableIntIsNil() predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasLabel(Label).HasNot(FieldNillableInt)
})
}
// NillableIntNotNil applies the NotNil predicate on the "nillable_int" field.
func NillableIntNotNil() predicate.Comment {
return predicate.Comment(func(t *dsl.Traversal) {
t.HasLabel(Label).Has(FieldNillableInt)
})
}
// And groups list of predicates with the AND operator between them.
func And(predicates ...predicate.Comment) predicate.Comment {
return predicate.Comment(func(tr *dsl.Traversal) {
trs := make([]interface{}, 0, len(predicates))
for _, p := range predicates {
t := __.New()
p(t)
trs = append(trs, t)
}
tr.Where(__.And(trs...))
})
}
// Or groups list of predicates with the OR operator between them.
func Or(predicates ...predicate.Comment) predicate.Comment {
return predicate.Comment(func(tr *dsl.Traversal) {
trs := make([]interface{}, 0, len(predicates))
for _, p := range predicates {
t := __.New()
p(t)
trs = append(trs, t)
}
tr.Where(__.Or(trs...))
})
}
// Not applies the not operator on the given predicate.
func Not(p predicate.Comment) predicate.Comment {
return predicate.Comment(func(tr *dsl.Traversal) {
t := __.New()
p(t)
tr.Where(__.Not(t))
})
}