mirror of
https://github.com/ent/ent.git
synced 2026-05-28 09:49:08 +03:00
Reviewed By: alexsn Differential Revision: D17119262 fbshipit-source-id: 046f095ca9432c920778db0edb2158dedb23c0a2
475 lines
12 KiB
Go
475 lines
12 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 (@generated) by entc, DO NOT EDIT.
|
|
|
|
package comment
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/facebookincubator/ent/entc/integration/ent/predicate"
|
|
|
|
"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/dialect/sql"
|
|
)
|
|
|
|
// ID filters vertices based on their identifier.
|
|
func ID(id string) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.HasID(id)
|
|
},
|
|
)
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id string) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.NEQ(s.C(FieldID), id))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.HasID(p.NEQ(id))
|
|
},
|
|
)
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id string) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.GT(s.C(FieldID), id))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.GTE(s.C(FieldID), id))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.LT(s.C(FieldID), id))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
id, _ := strconv.Atoi(id)
|
|
s.Where(sql.LTE(s.C(FieldID), id))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.HasID(p.LTE(id))
|
|
},
|
|
)
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...string) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(ids) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
v := make([]interface{}, len(ids))
|
|
for i := range v {
|
|
v[i], _ = strconv.Atoi(ids[i])
|
|
}
|
|
s.Where(sql.In(s.C(FieldID), v...))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(ids) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
v := make([]interface{}, len(ids))
|
|
for i := range v {
|
|
v[i], _ = strconv.Atoi(ids[i])
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldID), v...))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
v := make([]interface{}, len(ids))
|
|
for i := range v {
|
|
v[i] = ids[i]
|
|
}
|
|
t.HasID(p.Without(v...))
|
|
},
|
|
)
|
|
}
|
|
|
|
// UniqueInt applies equality check predicate on the "unique_int" field. It's identical to UniqueIntEQ.
|
|
func UniqueInt(v int) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUniqueInt), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUniqueFloat), v))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueFloat, p.EQ(v))
|
|
},
|
|
)
|
|
}
|
|
|
|
// UniqueIntEQ applies the EQ predicate on the "unique_int" field.
|
|
func UniqueIntEQ(v int) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUniqueInt), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldUniqueInt), v))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueInt, p.NEQ(v))
|
|
},
|
|
)
|
|
}
|
|
|
|
// UniqueIntGT applies the GT predicate on the "unique_int" field.
|
|
func UniqueIntGT(v int) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldUniqueInt), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldUniqueInt), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldUniqueInt), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldUniqueInt), v))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueInt, p.LTE(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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(vs) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldUniqueInt), v...))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(vs) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldUniqueInt), v...))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueInt, p.Without(v...))
|
|
},
|
|
)
|
|
}
|
|
|
|
// UniqueFloatEQ applies the EQ predicate on the "unique_float" field.
|
|
func UniqueFloatEQ(v float64) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldUniqueFloat), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldUniqueFloat), v))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueFloat, p.NEQ(v))
|
|
},
|
|
)
|
|
}
|
|
|
|
// UniqueFloatGT applies the GT predicate on the "unique_float" field.
|
|
func UniqueFloatGT(v float64) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldUniqueFloat), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldUniqueFloat), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldUniqueFloat), v))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldUniqueFloat), v))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueFloat, p.LTE(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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(vs) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldUniqueFloat), v...))
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
// if not arguments were provided, append the FALSE constants,
|
|
// since we can't apply "IN ()". This will make this predicate falsy.
|
|
if len(vs) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldUniqueFloat), v...))
|
|
},
|
|
func(t *dsl.Traversal) {
|
|
t.Has(Label, FieldUniqueFloat, p.Without(v...))
|
|
},
|
|
)
|
|
}
|
|
|
|
// And groups list of predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Comment) predicate.Comment {
|
|
return predicate.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
for _, p := range predicates {
|
|
p(s)
|
|
}
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
for i, p := range predicates {
|
|
if i > 0 {
|
|
s.Or()
|
|
}
|
|
p(s)
|
|
}
|
|
},
|
|
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.CommentPerDialect(
|
|
func(s *sql.Selector) {
|
|
p(s.Not())
|
|
},
|
|
func(tr *dsl.Traversal) {
|
|
t := __.New()
|
|
p(t)
|
|
tr.Where(__.Not(t))
|
|
},
|
|
)
|
|
}
|