mirror of
https://github.com/ent/ent.git
synced 2026-05-28 09:49:08 +03:00
610 lines
17 KiB
Go
610 lines
17 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 entc, DO NOT EDIT.
|
|
|
|
package card
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/facebook/ent/dialect/sql"
|
|
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebook/ent/entc/integration/hooks/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their identifier.
|
|
func ID(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.Card {
|
|
return predicate.Card(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] = ids[i]
|
|
}
|
|
s.Where(sql.In(s.C(FieldID), v...))
|
|
})
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.Card {
|
|
return predicate.Card(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] = ids[i]
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldID), v...))
|
|
})
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldID), id))
|
|
})
|
|
}
|
|
|
|
// Number applies equality check predicate on the "number" field. It's identical to NumberEQ.
|
|
func Number(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
func Name(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// InHook applies equality check predicate on the "in_hook" field. It's identical to InHookEQ.
|
|
func InHook(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// NumberEQ applies the EQ predicate on the "number" field.
|
|
func NumberEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberNEQ applies the NEQ predicate on the "number" field.
|
|
func NumberNEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberIn applies the In predicate on the "number" field.
|
|
func NumberIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldNumber), v...))
|
|
})
|
|
}
|
|
|
|
// NumberNotIn applies the NotIn predicate on the "number" field.
|
|
func NumberNotIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldNumber), v...))
|
|
})
|
|
}
|
|
|
|
// NumberGT applies the GT predicate on the "number" field.
|
|
func NumberGT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberGTE applies the GTE predicate on the "number" field.
|
|
func NumberGTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberLT applies the LT predicate on the "number" field.
|
|
func NumberLT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberLTE applies the LTE predicate on the "number" field.
|
|
func NumberLTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberContains applies the Contains predicate on the "number" field.
|
|
func NumberContains(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.Contains(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberHasPrefix applies the HasPrefix predicate on the "number" field.
|
|
func NumberHasPrefix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasPrefix(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberHasSuffix applies the HasSuffix predicate on the "number" field.
|
|
func NumberHasSuffix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasSuffix(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberEqualFold applies the EqualFold predicate on the "number" field.
|
|
func NumberEqualFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EqualFold(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NumberContainsFold applies the ContainsFold predicate on the "number" field.
|
|
func NumberContainsFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.ContainsFold(s.C(FieldNumber), v))
|
|
})
|
|
}
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
func NameEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
func NameNEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
func NameIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldName), v...))
|
|
})
|
|
}
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
func NameNotIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldName), v...))
|
|
})
|
|
}
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
func NameGT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
func NameGTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
func NameLT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
func NameLTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
func NameContains(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.Contains(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
func NameHasPrefix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasPrefix(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
func NameHasSuffix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasSuffix(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameIsNil applies the IsNil predicate on the "name" field.
|
|
func NameIsNil() predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.IsNull(s.C(FieldName)))
|
|
})
|
|
}
|
|
|
|
// NameNotNil applies the NotNil predicate on the "name" field.
|
|
func NameNotNil() predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NotNull(s.C(FieldName)))
|
|
})
|
|
}
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
func NameEqualFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EqualFold(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
func NameContainsFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.ContainsFold(s.C(FieldName), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldCreatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldCreatedAt), v...))
|
|
})
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldCreatedAt), v))
|
|
})
|
|
}
|
|
|
|
// InHookEQ applies the EQ predicate on the "in_hook" field.
|
|
func InHookEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EQ(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookNEQ applies the NEQ predicate on the "in_hook" field.
|
|
func InHookNEQ(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.NEQ(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookIn applies the In predicate on the "in_hook" field.
|
|
func InHookIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.In(s.C(FieldInHook), v...))
|
|
})
|
|
}
|
|
|
|
// InHookNotIn applies the NotIn predicate on the "in_hook" field.
|
|
func InHookNotIn(vs ...string) predicate.Card {
|
|
v := make([]interface{}, len(vs))
|
|
for i := range v {
|
|
v[i] = vs[i]
|
|
}
|
|
return predicate.Card(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(v) == 0 {
|
|
s.Where(sql.False())
|
|
return
|
|
}
|
|
s.Where(sql.NotIn(s.C(FieldInHook), v...))
|
|
})
|
|
}
|
|
|
|
// InHookGT applies the GT predicate on the "in_hook" field.
|
|
func InHookGT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GT(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookGTE applies the GTE predicate on the "in_hook" field.
|
|
func InHookGTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.GTE(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookLT applies the LT predicate on the "in_hook" field.
|
|
func InHookLT(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LT(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookLTE applies the LTE predicate on the "in_hook" field.
|
|
func InHookLTE(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.LTE(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookContains applies the Contains predicate on the "in_hook" field.
|
|
func InHookContains(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.Contains(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookHasPrefix applies the HasPrefix predicate on the "in_hook" field.
|
|
func InHookHasPrefix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasPrefix(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookHasSuffix applies the HasSuffix predicate on the "in_hook" field.
|
|
func InHookHasSuffix(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.HasSuffix(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookEqualFold applies the EqualFold predicate on the "in_hook" field.
|
|
func InHookEqualFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.EqualFold(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// InHookContainsFold applies the ContainsFold predicate on the "in_hook" field.
|
|
func InHookContainsFold(v string) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s.Where(sql.ContainsFold(s.C(FieldInHook), v))
|
|
})
|
|
}
|
|
|
|
// HasOwner applies the HasEdge predicate on the "owner" edge.
|
|
func HasOwner() predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
|
|
func HasOwnerWith(preds ...predicate.User) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(OwnerInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// And groups list of predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Card) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s1 := s.Clone().SetP(nil)
|
|
for _, p := range predicates {
|
|
p(s1)
|
|
}
|
|
s.Where(s1.P())
|
|
})
|
|
}
|
|
|
|
// Or groups list of predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Card) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
s1 := s.Clone().SetP(nil)
|
|
for i, p := range predicates {
|
|
if i > 0 {
|
|
s1.Or()
|
|
}
|
|
p(s1)
|
|
}
|
|
s.Where(s1.P())
|
|
})
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Card) predicate.Card {
|
|
return predicate.Card(func(s *sql.Selector) {
|
|
p(s.Not())
|
|
})
|
|
}
|