label.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. // Code generated by ent, DO NOT EDIT.
  2. package label
  3. import (
  4. "time"
  5. "entgo.io/ent/dialect/sql"
  6. "entgo.io/ent/dialect/sql/sqlgraph"
  7. )
  8. const (
  9. // Label holds the string label denoting the label type in the database.
  10. Label = "label"
  11. // FieldID holds the string denoting the id field in the database.
  12. FieldID = "id"
  13. // FieldCreatedAt holds the string denoting the created_at field in the database.
  14. FieldCreatedAt = "created_at"
  15. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  16. FieldUpdatedAt = "updated_at"
  17. // FieldStatus holds the string denoting the status field in the database.
  18. FieldStatus = "status"
  19. // FieldType holds the string denoting the type field in the database.
  20. FieldType = "type"
  21. // FieldName holds the string denoting the name field in the database.
  22. FieldName = "name"
  23. // FieldFrom holds the string denoting the from field in the database.
  24. FieldFrom = "from"
  25. // FieldMode holds the string denoting the mode field in the database.
  26. FieldMode = "mode"
  27. // FieldConditions holds the string denoting the conditions field in the database.
  28. FieldConditions = "conditions"
  29. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  30. FieldOrganizationID = "organization_id"
  31. // FieldCtype holds the string denoting the ctype field in the database.
  32. FieldCtype = "ctype"
  33. // EdgeLabelRelationships holds the string denoting the label_relationships edge name in mutations.
  34. EdgeLabelRelationships = "label_relationships"
  35. // Table holds the table name of the label in the database.
  36. Table = "label"
  37. // LabelRelationshipsTable is the table that holds the label_relationships relation/edge.
  38. LabelRelationshipsTable = "label_relationship"
  39. // LabelRelationshipsInverseTable is the table name for the LabelRelationship entity.
  40. // It exists in this package in order to avoid circular dependency with the "labelrelationship" package.
  41. LabelRelationshipsInverseTable = "label_relationship"
  42. // LabelRelationshipsColumn is the table column denoting the label_relationships relation/edge.
  43. LabelRelationshipsColumn = "label_id"
  44. )
  45. // Columns holds all SQL columns for label fields.
  46. var Columns = []string{
  47. FieldID,
  48. FieldCreatedAt,
  49. FieldUpdatedAt,
  50. FieldStatus,
  51. FieldType,
  52. FieldName,
  53. FieldFrom,
  54. FieldMode,
  55. FieldConditions,
  56. FieldOrganizationID,
  57. FieldCtype,
  58. }
  59. // ValidColumn reports if the column name is valid (part of the table columns).
  60. func ValidColumn(column string) bool {
  61. for i := range Columns {
  62. if column == Columns[i] {
  63. return true
  64. }
  65. }
  66. return false
  67. }
  68. var (
  69. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  70. DefaultCreatedAt func() time.Time
  71. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  72. DefaultUpdatedAt func() time.Time
  73. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  74. UpdateDefaultUpdatedAt func() time.Time
  75. // DefaultStatus holds the default value on creation for the "status" field.
  76. DefaultStatus uint8
  77. // DefaultType holds the default value on creation for the "type" field.
  78. DefaultType int
  79. // DefaultName holds the default value on creation for the "name" field.
  80. DefaultName string
  81. // DefaultFrom holds the default value on creation for the "from" field.
  82. DefaultFrom int
  83. // DefaultMode holds the default value on creation for the "mode" field.
  84. DefaultMode int
  85. // DefaultConditions holds the default value on creation for the "conditions" field.
  86. DefaultConditions string
  87. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  88. DefaultOrganizationID uint64
  89. // DefaultCtype holds the default value on creation for the "ctype" field.
  90. DefaultCtype uint64
  91. )
  92. // OrderOption defines the ordering options for the Label queries.
  93. type OrderOption func(*sql.Selector)
  94. // ByID orders the results by the id field.
  95. func ByID(opts ...sql.OrderTermOption) OrderOption {
  96. return sql.OrderByField(FieldID, opts...).ToFunc()
  97. }
  98. // ByCreatedAt orders the results by the created_at field.
  99. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  100. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  101. }
  102. // ByUpdatedAt orders the results by the updated_at field.
  103. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  104. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  105. }
  106. // ByStatus orders the results by the status field.
  107. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  108. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  109. }
  110. // ByType orders the results by the type field.
  111. func ByType(opts ...sql.OrderTermOption) OrderOption {
  112. return sql.OrderByField(FieldType, opts...).ToFunc()
  113. }
  114. // ByName orders the results by the name field.
  115. func ByName(opts ...sql.OrderTermOption) OrderOption {
  116. return sql.OrderByField(FieldName, opts...).ToFunc()
  117. }
  118. // ByFrom orders the results by the from field.
  119. func ByFrom(opts ...sql.OrderTermOption) OrderOption {
  120. return sql.OrderByField(FieldFrom, opts...).ToFunc()
  121. }
  122. // ByMode orders the results by the mode field.
  123. func ByMode(opts ...sql.OrderTermOption) OrderOption {
  124. return sql.OrderByField(FieldMode, opts...).ToFunc()
  125. }
  126. // ByConditions orders the results by the conditions field.
  127. func ByConditions(opts ...sql.OrderTermOption) OrderOption {
  128. return sql.OrderByField(FieldConditions, opts...).ToFunc()
  129. }
  130. // ByOrganizationID orders the results by the organization_id field.
  131. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  132. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  133. }
  134. // ByCtype orders the results by the ctype field.
  135. func ByCtype(opts ...sql.OrderTermOption) OrderOption {
  136. return sql.OrderByField(FieldCtype, opts...).ToFunc()
  137. }
  138. // ByLabelRelationshipsCount orders the results by label_relationships count.
  139. func ByLabelRelationshipsCount(opts ...sql.OrderTermOption) OrderOption {
  140. return func(s *sql.Selector) {
  141. sqlgraph.OrderByNeighborsCount(s, newLabelRelationshipsStep(), opts...)
  142. }
  143. }
  144. // ByLabelRelationships orders the results by label_relationships terms.
  145. func ByLabelRelationships(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  146. return func(s *sql.Selector) {
  147. sqlgraph.OrderByNeighborTerms(s, newLabelRelationshipsStep(), append([]sql.OrderTerm{term}, terms...)...)
  148. }
  149. }
  150. func newLabelRelationshipsStep() *sqlgraph.Step {
  151. return sqlgraph.NewStep(
  152. sqlgraph.From(Table, FieldID),
  153. sqlgraph.To(LabelRelationshipsInverseTable, FieldID),
  154. sqlgraph.Edge(sqlgraph.O2M, false, LabelRelationshipsTable, LabelRelationshipsColumn),
  155. )
  156. }