mirror of
https://github.com/kevin-DL/football_info_api.git
synced 2026-01-11 10:04:28 +00:00
294 lines
9.8 KiB
Go
294 lines
9.8 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package profile
|
|
|
|
import (
|
|
"football_api/ent/predicate"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// DisplayName applies equality check predicate on the "display_name" field. It's identical to DisplayNameEQ.
|
|
func DisplayName(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldDisplayName, v))
|
|
}
|
|
|
|
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
|
func UserID(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
func UpdatedAt(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// DisplayNameEQ applies the EQ predicate on the "display_name" field.
|
|
func DisplayNameEQ(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameNEQ applies the NEQ predicate on the "display_name" field.
|
|
func DisplayNameNEQ(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNEQ(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameIn applies the In predicate on the "display_name" field.
|
|
func DisplayNameIn(vs ...string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldIn(FieldDisplayName, vs...))
|
|
}
|
|
|
|
// DisplayNameNotIn applies the NotIn predicate on the "display_name" field.
|
|
func DisplayNameNotIn(vs ...string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNotIn(FieldDisplayName, vs...))
|
|
}
|
|
|
|
// DisplayNameGT applies the GT predicate on the "display_name" field.
|
|
func DisplayNameGT(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGT(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameGTE applies the GTE predicate on the "display_name" field.
|
|
func DisplayNameGTE(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGTE(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameLT applies the LT predicate on the "display_name" field.
|
|
func DisplayNameLT(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLT(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameLTE applies the LTE predicate on the "display_name" field.
|
|
func DisplayNameLTE(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLTE(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameContains applies the Contains predicate on the "display_name" field.
|
|
func DisplayNameContains(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldContains(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameHasPrefix applies the HasPrefix predicate on the "display_name" field.
|
|
func DisplayNameHasPrefix(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldHasPrefix(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameHasSuffix applies the HasSuffix predicate on the "display_name" field.
|
|
func DisplayNameHasSuffix(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldHasSuffix(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameEqualFold applies the EqualFold predicate on the "display_name" field.
|
|
func DisplayNameEqualFold(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEqualFold(FieldDisplayName, v))
|
|
}
|
|
|
|
// DisplayNameContainsFold applies the ContainsFold predicate on the "display_name" field.
|
|
func DisplayNameContainsFold(v string) predicate.Profile {
|
|
return predicate.Profile(sql.FieldContainsFold(FieldDisplayName, v))
|
|
}
|
|
|
|
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
|
func UserIDEQ(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
|
func UserIDNEQ(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDIn applies the In predicate on the "user_id" field.
|
|
func UserIDIn(vs ...uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
|
func UserIDNotIn(vs ...uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNotIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// UserIDGT applies the GT predicate on the "user_id" field.
|
|
func UserIDGT(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGT(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDGTE applies the GTE predicate on the "user_id" field.
|
|
func UserIDGTE(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGTE(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDLT applies the LT predicate on the "user_id" field.
|
|
func UserIDLT(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLT(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDLTE applies the LTE predicate on the "user_id" field.
|
|
func UserIDLTE(v uuid.UUID) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLTE(FieldUserID, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.Profile {
|
|
return predicate.Profile(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Profile) predicate.Profile {
|
|
return predicate.Profile(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.Profile) predicate.Profile {
|
|
return predicate.Profile(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.Profile) predicate.Profile {
|
|
return predicate.Profile(func(s *sql.Selector) {
|
|
p(s.Not())
|
|
})
|
|
}
|