1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
// 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 bloblink
import (
"time"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/entc/integration/customid/ent/predicate"
"github.com/google/uuid"
)
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAt(v time.Time) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldCreatedAt), v))
})
}
// BlobID applies equality check predicate on the "blob_id" field. It's identical to BlobIDEQ.
func BlobID(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldBlobID), v))
})
}
// LinkID applies equality check predicate on the "link_id" field. It's identical to LinkIDEQ.
func LinkID(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldLinkID), v))
})
}
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtEQ(v time.Time) predicate.BlobLink {
return predicate.BlobLink(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.BlobLink {
return predicate.BlobLink(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.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.In(s.C(FieldCreatedAt), v...))
})
}
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func CreatedAtNotIn(vs ...time.Time) predicate.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.NotIn(s.C(FieldCreatedAt), v...))
})
}
// CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGT(v time.Time) predicate.BlobLink {
return predicate.BlobLink(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.BlobLink {
return predicate.BlobLink(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.BlobLink {
return predicate.BlobLink(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.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.LTE(s.C(FieldCreatedAt), v))
})
}
// BlobIDEQ applies the EQ predicate on the "blob_id" field.
func BlobIDEQ(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldBlobID), v))
})
}
// BlobIDNEQ applies the NEQ predicate on the "blob_id" field.
func BlobIDNEQ(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldBlobID), v))
})
}
// BlobIDIn applies the In predicate on the "blob_id" field.
func BlobIDIn(vs ...uuid.UUID) predicate.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.In(s.C(FieldBlobID), v...))
})
}
// BlobIDNotIn applies the NotIn predicate on the "blob_id" field.
func BlobIDNotIn(vs ...uuid.UUID) predicate.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.NotIn(s.C(FieldBlobID), v...))
})
}
// LinkIDEQ applies the EQ predicate on the "link_id" field.
func LinkIDEQ(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.EQ(s.C(FieldLinkID), v))
})
}
// LinkIDNEQ applies the NEQ predicate on the "link_id" field.
func LinkIDNEQ(v uuid.UUID) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.NEQ(s.C(FieldLinkID), v))
})
}
// LinkIDIn applies the In predicate on the "link_id" field.
func LinkIDIn(vs ...uuid.UUID) predicate.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.In(s.C(FieldLinkID), v...))
})
}
// LinkIDNotIn applies the NotIn predicate on the "link_id" field.
func LinkIDNotIn(vs ...uuid.UUID) predicate.BlobLink {
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
return predicate.BlobLink(func(s *sql.Selector) {
s.Where(sql.NotIn(s.C(FieldLinkID), v...))
})
}
// HasBlob applies the HasEdge predicate on the "blob" edge.
func HasBlob() predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, BlobColumn),
sqlgraph.To(BlobInverseTable, BlobFieldID),
sqlgraph.Edge(sqlgraph.M2O, false, BlobTable, BlobColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasBlobWith applies the HasEdge predicate on the "blob" edge with a given conditions (other predicates).
func HasBlobWith(preds ...predicate.Blob) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, BlobColumn),
sqlgraph.To(BlobInverseTable, BlobFieldID),
sqlgraph.Edge(sqlgraph.M2O, false, BlobTable, BlobColumn),
)
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// HasLink applies the HasEdge predicate on the "link" edge.
func HasLink() predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, LinkColumn),
sqlgraph.To(LinkInverseTable, BlobFieldID),
sqlgraph.Edge(sqlgraph.M2O, false, LinkTable, LinkColumn),
)
sqlgraph.HasNeighbors(s, step)
})
}
// HasLinkWith applies the HasEdge predicate on the "link" edge with a given conditions (other predicates).
func HasLinkWith(preds ...predicate.Blob) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
step := sqlgraph.NewStep(
sqlgraph.From(Table, LinkColumn),
sqlgraph.To(LinkInverseTable, BlobFieldID),
sqlgraph.Edge(sqlgraph.M2O, false, LinkTable, LinkColumn),
)
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
for _, p := range preds {
p(s)
}
})
})
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.BlobLink) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
s1 := s.Clone().SetP(nil)
for _, p := range predicates {
p(s1)
}
s.Where(s1.P())
})
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.BlobLink) predicate.BlobLink {
return predicate.BlobLink(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.BlobLink) predicate.BlobLink {
return predicate.BlobLink(func(s *sql.Selector) {
p(s.Not())
})
}
|