Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Kitten) predicate.Kitten
- func CreateTime(v time.Time) predicate.Kitten
- func CreateTimeEQ(v time.Time) predicate.Kitten
- func CreateTimeGT(v time.Time) predicate.Kitten
- func CreateTimeGTE(v time.Time) predicate.Kitten
- func CreateTimeIn(vs ...time.Time) predicate.Kitten
- func CreateTimeLT(v time.Time) predicate.Kitten
- func CreateTimeLTE(v time.Time) predicate.Kitten
- func CreateTimeNEQ(v time.Time) predicate.Kitten
- func CreateTimeNotIn(vs ...time.Time) predicate.Kitten
- func DeletedTime(v time.Time) predicate.Kitten
- func DeletedTimeEQ(v time.Time) predicate.Kitten
- func DeletedTimeGT(v time.Time) predicate.Kitten
- func DeletedTimeGTE(v time.Time) predicate.Kitten
- func DeletedTimeIn(vs ...time.Time) predicate.Kitten
- func DeletedTimeIsNil() predicate.Kitten
- func DeletedTimeLT(v time.Time) predicate.Kitten
- func DeletedTimeLTE(v time.Time) predicate.Kitten
- func DeletedTimeNEQ(v time.Time) predicate.Kitten
- func DeletedTimeNotIn(vs ...time.Time) predicate.Kitten
- func DeletedTimeNotNil() predicate.Kitten
- func HasMother() predicate.Kitten
- func HasMotherWith(preds ...predicate.Cat) predicate.Kitten
- func ID(id uuid.UUID) predicate.Kitten
- func IDEQ(id uuid.UUID) predicate.Kitten
- func IDGT(id uuid.UUID) predicate.Kitten
- func IDGTE(id uuid.UUID) predicate.Kitten
- func IDIn(ids ...uuid.UUID) predicate.Kitten
- func IDLT(id uuid.UUID) predicate.Kitten
- func IDLTE(id uuid.UUID) predicate.Kitten
- func IDNEQ(id uuid.UUID) predicate.Kitten
- func IDNotIn(ids ...uuid.UUID) predicate.Kitten
- func MotherID(v uuid.UUID) predicate.Kitten
- func MotherIDEQ(v uuid.UUID) predicate.Kitten
- func MotherIDIn(vs ...uuid.UUID) predicate.Kitten
- func MotherIDNEQ(v uuid.UUID) predicate.Kitten
- func MotherIDNotIn(vs ...uuid.UUID) predicate.Kitten
- func Name(v string) predicate.Kitten
- func NameContains(v string) predicate.Kitten
- func NameContainsFold(v string) predicate.Kitten
- func NameEQ(v string) predicate.Kitten
- func NameEqualFold(v string) predicate.Kitten
- func NameGT(v string) predicate.Kitten
- func NameGTE(v string) predicate.Kitten
- func NameHasPrefix(v string) predicate.Kitten
- func NameHasSuffix(v string) predicate.Kitten
- func NameIn(vs ...string) predicate.Kitten
- func NameLT(v string) predicate.Kitten
- func NameLTE(v string) predicate.Kitten
- func NameNEQ(v string) predicate.Kitten
- func NameNotIn(vs ...string) predicate.Kitten
- func Not(p predicate.Kitten) predicate.Kitten
- func Or(predicates ...predicate.Kitten) predicate.Kitten
- func UpdateTime(v time.Time) predicate.Kitten
- func UpdateTimeEQ(v time.Time) predicate.Kitten
- func UpdateTimeGT(v time.Time) predicate.Kitten
- func UpdateTimeGTE(v time.Time) predicate.Kitten
- func UpdateTimeIn(vs ...time.Time) predicate.Kitten
- func UpdateTimeLT(v time.Time) predicate.Kitten
- func UpdateTimeLTE(v time.Time) predicate.Kitten
- func UpdateTimeNEQ(v time.Time) predicate.Kitten
- func UpdateTimeNotIn(vs ...time.Time) predicate.Kitten
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
- func ByDeletedTime(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByMotherField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByMotherID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the kitten type in the database. Label = "kitten" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldDeletedTime holds the string denoting the deleted_time field in the database. FieldDeletedTime = "deleted_time" // FieldCreateTime holds the string denoting the create_time field in the database. FieldCreateTime = "create_time" // FieldUpdateTime holds the string denoting the update_time field in the database. FieldUpdateTime = "update_time" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldMotherID holds the string denoting the mother_id field in the database. FieldMotherID = "mother_id" // EdgeMother holds the string denoting the mother edge name in mutations. EdgeMother = "mother" // Table holds the table name of the kitten in the database. Table = "kittens" // MotherTable is the table that holds the mother relation/edge. MotherTable = "kittens" // MotherInverseTable is the table name for the Cat entity. // It exists in this package in order to avoid circular dependency with the "cat" package. MotherInverseTable = "cats" // MotherColumn is the table column denoting the mother relation/edge. MotherColumn = "mother_id" )
Variables ¶
var ( // DefaultCreateTime holds the default value on creation for the "create_time" field. DefaultCreateTime func() time.Time // DefaultUpdateTime holds the default value on creation for the "update_time" field. DefaultUpdateTime func() time.Time // UpdateDefaultUpdateTime holds the default value on update for the "update_time" field. UpdateDefaultUpdateTime func() time.Time // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldDeletedTime, FieldCreateTime, FieldUpdateTime, FieldName, FieldMotherID, }
Columns holds all SQL columns for kitten fields.
Functions ¶
func CreateTime ¶
CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.
func CreateTimeEQ ¶
CreateTimeEQ applies the EQ predicate on the "create_time" field.
func CreateTimeGT ¶
CreateTimeGT applies the GT predicate on the "create_time" field.
func CreateTimeGTE ¶
CreateTimeGTE applies the GTE predicate on the "create_time" field.
func CreateTimeIn ¶
CreateTimeIn applies the In predicate on the "create_time" field.
func CreateTimeLT ¶
CreateTimeLT applies the LT predicate on the "create_time" field.
func CreateTimeLTE ¶
CreateTimeLTE applies the LTE predicate on the "create_time" field.
func CreateTimeNEQ ¶
CreateTimeNEQ applies the NEQ predicate on the "create_time" field.
func CreateTimeNotIn ¶
CreateTimeNotIn applies the NotIn predicate on the "create_time" field.
func DeletedTime ¶
DeletedTime applies equality check predicate on the "deleted_time" field. It's identical to DeletedTimeEQ.
func DeletedTimeEQ ¶
DeletedTimeEQ applies the EQ predicate on the "deleted_time" field.
func DeletedTimeGT ¶
DeletedTimeGT applies the GT predicate on the "deleted_time" field.
func DeletedTimeGTE ¶
DeletedTimeGTE applies the GTE predicate on the "deleted_time" field.
func DeletedTimeIn ¶
DeletedTimeIn applies the In predicate on the "deleted_time" field.
func DeletedTimeIsNil ¶
DeletedTimeIsNil applies the IsNil predicate on the "deleted_time" field.
func DeletedTimeLT ¶
DeletedTimeLT applies the LT predicate on the "deleted_time" field.
func DeletedTimeLTE ¶
DeletedTimeLTE applies the LTE predicate on the "deleted_time" field.
func DeletedTimeNEQ ¶
DeletedTimeNEQ applies the NEQ predicate on the "deleted_time" field.
func DeletedTimeNotIn ¶
DeletedTimeNotIn applies the NotIn predicate on the "deleted_time" field.
func DeletedTimeNotNil ¶
DeletedTimeNotNil applies the NotNil predicate on the "deleted_time" field.
func HasMotherWith ¶
HasMotherWith applies the HasEdge predicate on the "mother" edge with a given conditions (other predicates).
func MotherID ¶
MotherID applies equality check predicate on the "mother_id" field. It's identical to MotherIDEQ.
func MotherIDEQ ¶
MotherIDEQ applies the EQ predicate on the "mother_id" field.
func MotherIDIn ¶
MotherIDIn applies the In predicate on the "mother_id" field.
func MotherIDNEQ ¶
MotherIDNEQ applies the NEQ predicate on the "mother_id" field.
func MotherIDNotIn ¶
MotherIDNotIn applies the NotIn predicate on the "mother_id" field.
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func UpdateTime ¶
UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.
func UpdateTimeEQ ¶
UpdateTimeEQ applies the EQ predicate on the "update_time" field.
func UpdateTimeGT ¶
UpdateTimeGT applies the GT predicate on the "update_time" field.
func UpdateTimeGTE ¶
UpdateTimeGTE applies the GTE predicate on the "update_time" field.
func UpdateTimeIn ¶
UpdateTimeIn applies the In predicate on the "update_time" field.
func UpdateTimeLT ¶
UpdateTimeLT applies the LT predicate on the "update_time" field.
func UpdateTimeLTE ¶
UpdateTimeLTE applies the LTE predicate on the "update_time" field.
func UpdateTimeNEQ ¶
UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.
func UpdateTimeNotIn ¶
UpdateTimeNotIn applies the NotIn predicate on the "update_time" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Kitten queries.
func ByCreateTime ¶
func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
ByCreateTime orders the results by the create_time field.
func ByDeletedTime ¶
func ByDeletedTime(opts ...sql.OrderTermOption) OrderOption
ByDeletedTime orders the results by the deleted_time field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByMotherField ¶
func ByMotherField(field string, opts ...sql.OrderTermOption) OrderOption
ByMotherField orders the results by mother field.
func ByMotherID ¶
func ByMotherID(opts ...sql.OrderTermOption) OrderOption
ByMotherID orders the results by the mother_id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByUpdateTime ¶
func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
ByUpdateTime orders the results by the update_time field.