Files
ent/entc/integration/migrate/entv2/zoo/where.go
Ariel Mashraki 808edd134d dialect/sql: support capturing predicates in selectors
This allows custom predicates mutating the root querying and still respect the AND/OR/NOT semantics
2023-06-22 00:08:26 +03:00

73 lines
2.0 KiB
Go

// 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.
// Code generated by ent, DO NOT EDIT.
package zoo
import (
"entgo.io/ent/dialect/sql"
"entgo.io/ent/entc/integration/migrate/entv2/predicate"
)
// ID filters vertices based on their ID field.
func ID(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...int) predicate.Zoo {
return predicate.Zoo(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...int) predicate.Zoo {
return predicate.Zoo(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id int) predicate.Zoo {
return predicate.Zoo(sql.FieldLTE(FieldID, id))
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.Zoo) predicate.Zoo {
return predicate.Zoo(sql.AndPredicates(predicates...))
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.Zoo) predicate.Zoo {
return predicate.Zoo(sql.OrPredicates(predicates...))
}
// Not applies the not operator on the given predicate.
func Not(p predicate.Zoo) predicate.Zoo {
return predicate.Zoo(sql.NotPredicates(p))
}