You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
543 lines
17 KiB
Go
543 lines
17 KiB
Go
1 year ago
|
// Code generated by ent, DO NOT EDIT.
|
||
|
|
||
|
package role
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/predicate"
|
||
|
"git.noahlan.cn/noahlan/ntool-biz/core/orm/nent/types"
|
||
|
)
|
||
|
|
||
|
// ID filters vertices based on their ID field.
|
||
|
func ID(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDEQ applies the EQ predicate on the ID field.
|
||
|
func IDEQ(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDNEQ applies the NEQ predicate on the ID field.
|
||
|
func IDNEQ(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDIn applies the In predicate on the ID field.
|
||
|
func IDIn(ids ...int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDNotIn applies the NotIn predicate on the ID field.
|
||
|
func IDNotIn(ids ...int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDGT applies the GT predicate on the ID field.
|
||
|
func IDGT(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDGTE applies the GTE predicate on the ID field.
|
||
|
func IDGTE(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLT applies the LT predicate on the ID field.
|
||
|
func IDLT(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLTE applies the LTE predicate on the ID field.
|
||
|
func IDLTE(id int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
||
|
func CreatedAt(v time.Time) predicate.Role {
|
||
|
return predicate.Role(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.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// Version applies equality check predicate on the "version" field. It's identical to VersionEQ.
|
||
|
func Version(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
|
||
|
func DeletedAt(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// Code applies equality check predicate on the "code" field. It's identical to CodeEQ.
|
||
|
func Code(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
||
|
func Name(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
|
||
|
func Description(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
||
|
func CreatedAtEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
||
|
func CreatedAtNEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
||
|
func CreatedAtIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldCreatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
||
|
func CreatedAtNotIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldCreatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
||
|
func CreatedAtGT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
||
|
func CreatedAtGTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
||
|
func CreatedAtLT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
||
|
func CreatedAtLTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
||
|
func UpdatedAtEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
||
|
func UpdatedAtNEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
||
|
func UpdatedAtIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldUpdatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
||
|
func UpdatedAtNotIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
||
|
func UpdatedAtGT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
||
|
func UpdatedAtGTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
||
|
func UpdatedAtLT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
||
|
func UpdatedAtLTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// VersionEQ applies the EQ predicate on the "version" field.
|
||
|
func VersionEQ(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionNEQ applies the NEQ predicate on the "version" field.
|
||
|
func VersionNEQ(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionIn applies the In predicate on the "version" field.
|
||
|
func VersionIn(vs ...int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldVersion, vs...))
|
||
|
}
|
||
|
|
||
|
// VersionNotIn applies the NotIn predicate on the "version" field.
|
||
|
func VersionNotIn(vs ...int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldVersion, vs...))
|
||
|
}
|
||
|
|
||
|
// VersionGT applies the GT predicate on the "version" field.
|
||
|
func VersionGT(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionGTE applies the GTE predicate on the "version" field.
|
||
|
func VersionGTE(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionLT applies the LT predicate on the "version" field.
|
||
|
func VersionLT(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionLTE applies the LTE predicate on the "version" field.
|
||
|
func VersionLTE(v int64) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// StatusEQ applies the EQ predicate on the "status" field.
|
||
|
func StatusEQ(v types.Status) predicate.Role {
|
||
|
vc := v
|
||
|
return predicate.Role(sql.FieldEQ(FieldStatus, vc))
|
||
|
}
|
||
|
|
||
|
// StatusNEQ applies the NEQ predicate on the "status" field.
|
||
|
func StatusNEQ(v types.Status) predicate.Role {
|
||
|
vc := v
|
||
|
return predicate.Role(sql.FieldNEQ(FieldStatus, vc))
|
||
|
}
|
||
|
|
||
|
// StatusIn applies the In predicate on the "status" field.
|
||
|
func StatusIn(vs ...types.Status) predicate.Role {
|
||
|
v := make([]any, len(vs))
|
||
|
for i := range v {
|
||
|
v[i] = vs[i]
|
||
|
}
|
||
|
return predicate.Role(sql.FieldIn(FieldStatus, v...))
|
||
|
}
|
||
|
|
||
|
// StatusNotIn applies the NotIn predicate on the "status" field.
|
||
|
func StatusNotIn(vs ...types.Status) predicate.Role {
|
||
|
v := make([]any, len(vs))
|
||
|
for i := range v {
|
||
|
v[i] = vs[i]
|
||
|
}
|
||
|
return predicate.Role(sql.FieldNotIn(FieldStatus, v...))
|
||
|
}
|
||
|
|
||
|
// DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
|
||
|
func DeletedAtEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
|
||
|
func DeletedAtNEQ(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtIn applies the In predicate on the "deleted_at" field.
|
||
|
func DeletedAtIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldDeletedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
|
||
|
func DeletedAtNotIn(vs ...time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldDeletedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// DeletedAtGT applies the GT predicate on the "deleted_at" field.
|
||
|
func DeletedAtGT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
|
||
|
func DeletedAtGTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtLT applies the LT predicate on the "deleted_at" field.
|
||
|
func DeletedAtLT(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
|
||
|
func DeletedAtLTE(v time.Time) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldDeletedAt, v))
|
||
|
}
|
||
|
|
||
|
// DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
|
||
|
func DeletedAtIsNil() predicate.Role {
|
||
|
return predicate.Role(sql.FieldIsNull(FieldDeletedAt))
|
||
|
}
|
||
|
|
||
|
// DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
|
||
|
func DeletedAtNotNil() predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotNull(FieldDeletedAt))
|
||
|
}
|
||
|
|
||
|
// CodeEQ applies the EQ predicate on the "code" field.
|
||
|
func CodeEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeNEQ applies the NEQ predicate on the "code" field.
|
||
|
func CodeNEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeIn applies the In predicate on the "code" field.
|
||
|
func CodeIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldCode, vs...))
|
||
|
}
|
||
|
|
||
|
// CodeNotIn applies the NotIn predicate on the "code" field.
|
||
|
func CodeNotIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldCode, vs...))
|
||
|
}
|
||
|
|
||
|
// CodeGT applies the GT predicate on the "code" field.
|
||
|
func CodeGT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeGTE applies the GTE predicate on the "code" field.
|
||
|
func CodeGTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeLT applies the LT predicate on the "code" field.
|
||
|
func CodeLT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeLTE applies the LTE predicate on the "code" field.
|
||
|
func CodeLTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeContains applies the Contains predicate on the "code" field.
|
||
|
func CodeContains(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContains(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeHasPrefix applies the HasPrefix predicate on the "code" field.
|
||
|
func CodeHasPrefix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasPrefix(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeHasSuffix applies the HasSuffix predicate on the "code" field.
|
||
|
func CodeHasSuffix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasSuffix(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeEqualFold applies the EqualFold predicate on the "code" field.
|
||
|
func CodeEqualFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEqualFold(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// CodeContainsFold applies the ContainsFold predicate on the "code" field.
|
||
|
func CodeContainsFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContainsFold(FieldCode, v))
|
||
|
}
|
||
|
|
||
|
// NameEQ applies the EQ predicate on the "name" field.
|
||
|
func NameEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
||
|
func NameNEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameIn applies the In predicate on the "name" field.
|
||
|
func NameIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldName, vs...))
|
||
|
}
|
||
|
|
||
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
||
|
func NameNotIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldName, vs...))
|
||
|
}
|
||
|
|
||
|
// NameGT applies the GT predicate on the "name" field.
|
||
|
func NameGT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameGTE applies the GTE predicate on the "name" field.
|
||
|
func NameGTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameLT applies the LT predicate on the "name" field.
|
||
|
func NameLT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameLTE applies the LTE predicate on the "name" field.
|
||
|
func NameLTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameContains applies the Contains predicate on the "name" field.
|
||
|
func NameContains(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContains(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
||
|
func NameHasPrefix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasPrefix(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
||
|
func NameHasSuffix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasSuffix(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
||
|
func NameEqualFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEqualFold(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
||
|
func NameContainsFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContainsFold(FieldName, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionEQ applies the EQ predicate on the "description" field.
|
||
|
func DescriptionEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEQ(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionNEQ applies the NEQ predicate on the "description" field.
|
||
|
func DescriptionNEQ(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNEQ(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionIn applies the In predicate on the "description" field.
|
||
|
func DescriptionIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldIn(FieldDescription, vs...))
|
||
|
}
|
||
|
|
||
|
// DescriptionNotIn applies the NotIn predicate on the "description" field.
|
||
|
func DescriptionNotIn(vs ...string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldNotIn(FieldDescription, vs...))
|
||
|
}
|
||
|
|
||
|
// DescriptionGT applies the GT predicate on the "description" field.
|
||
|
func DescriptionGT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGT(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionGTE applies the GTE predicate on the "description" field.
|
||
|
func DescriptionGTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldGTE(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionLT applies the LT predicate on the "description" field.
|
||
|
func DescriptionLT(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLT(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionLTE applies the LTE predicate on the "description" field.
|
||
|
func DescriptionLTE(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldLTE(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionContains applies the Contains predicate on the "description" field.
|
||
|
func DescriptionContains(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContains(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
|
||
|
func DescriptionHasPrefix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasPrefix(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
|
||
|
func DescriptionHasSuffix(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldHasSuffix(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionEqualFold applies the EqualFold predicate on the "description" field.
|
||
|
func DescriptionEqualFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldEqualFold(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
|
||
|
func DescriptionContainsFold(v string) predicate.Role {
|
||
|
return predicate.Role(sql.FieldContainsFold(FieldDescription, v))
|
||
|
}
|
||
|
|
||
|
// HasUsers applies the HasEdge predicate on the "users" edge.
|
||
|
func HasUsers() predicate.Role {
|
||
|
return predicate.Role(func(s *sql.Selector) {
|
||
|
step := sqlgraph.NewStep(
|
||
|
sqlgraph.From(Table, FieldID),
|
||
|
sqlgraph.Edge(sqlgraph.M2M, true, UsersTable, UsersPrimaryKey...),
|
||
|
)
|
||
|
sqlgraph.HasNeighbors(s, step)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// HasUsersWith applies the HasEdge predicate on the "users" edge with a given conditions (other predicates).
|
||
|
func HasUsersWith(preds ...predicate.User) predicate.Role {
|
||
|
return predicate.Role(func(s *sql.Selector) {
|
||
|
step := newUsersStep()
|
||
|
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.Role) predicate.Role {
|
||
|
return predicate.Role(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.Role) predicate.Role {
|
||
|
return predicate.Role(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.Role) predicate.Role {
|
||
|
return predicate.Role(func(s *sql.Selector) {
|
||
|
p(s.Not())
|
||
|
})
|
||
|
}
|