labelrelationship.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. // Code generated by ent, DO NOT EDIT.
  2. package labelrelationship
  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 labelrelationship type in the database.
  10. Label = "label_relationship"
  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. // FieldLabelID holds the string denoting the label_id field in the database.
  20. FieldLabelID = "label_id"
  21. // FieldContactID holds the string denoting the contact_id field in the database.
  22. FieldContactID = "contact_id"
  23. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  24. FieldOrganizationID = "organization_id"
  25. // FieldCtype holds the string denoting the ctype field in the database.
  26. FieldCtype = "ctype"
  27. // EdgeContacts holds the string denoting the contacts edge name in mutations.
  28. EdgeContacts = "contacts"
  29. // EdgeLabels holds the string denoting the labels edge name in mutations.
  30. EdgeLabels = "labels"
  31. // Table holds the table name of the labelrelationship in the database.
  32. Table = "label_relationship"
  33. // ContactsTable is the table that holds the contacts relation/edge.
  34. ContactsTable = "label_relationship"
  35. // ContactsInverseTable is the table name for the Contact entity.
  36. // It exists in this package in order to avoid circular dependency with the "contact" package.
  37. ContactsInverseTable = "contact"
  38. // ContactsColumn is the table column denoting the contacts relation/edge.
  39. ContactsColumn = "contact_id"
  40. // LabelsTable is the table that holds the labels relation/edge.
  41. LabelsTable = "label_relationship"
  42. // LabelsInverseTable is the table name for the Label entity.
  43. // It exists in this package in order to avoid circular dependency with the "label" package.
  44. LabelsInverseTable = "label"
  45. // LabelsColumn is the table column denoting the labels relation/edge.
  46. LabelsColumn = "label_id"
  47. )
  48. // Columns holds all SQL columns for labelrelationship fields.
  49. var Columns = []string{
  50. FieldID,
  51. FieldCreatedAt,
  52. FieldUpdatedAt,
  53. FieldStatus,
  54. FieldLabelID,
  55. FieldContactID,
  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. // DefaultLabelID holds the default value on creation for the "label_id" field.
  78. DefaultLabelID uint64
  79. // DefaultContactID holds the default value on creation for the "contact_id" field.
  80. DefaultContactID uint64
  81. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  82. DefaultOrganizationID uint64
  83. // DefaultCtype holds the default value on creation for the "ctype" field.
  84. DefaultCtype uint64
  85. )
  86. // OrderOption defines the ordering options for the LabelRelationship queries.
  87. type OrderOption func(*sql.Selector)
  88. // ByID orders the results by the id field.
  89. func ByID(opts ...sql.OrderTermOption) OrderOption {
  90. return sql.OrderByField(FieldID, opts...).ToFunc()
  91. }
  92. // ByCreatedAt orders the results by the created_at field.
  93. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  94. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  95. }
  96. // ByUpdatedAt orders the results by the updated_at field.
  97. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  98. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  99. }
  100. // ByStatus orders the results by the status field.
  101. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  102. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  103. }
  104. // ByLabelID orders the results by the label_id field.
  105. func ByLabelID(opts ...sql.OrderTermOption) OrderOption {
  106. return sql.OrderByField(FieldLabelID, opts...).ToFunc()
  107. }
  108. // ByContactID orders the results by the contact_id field.
  109. func ByContactID(opts ...sql.OrderTermOption) OrderOption {
  110. return sql.OrderByField(FieldContactID, opts...).ToFunc()
  111. }
  112. // ByOrganizationID orders the results by the organization_id field.
  113. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  114. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  115. }
  116. // ByCtype orders the results by the ctype field.
  117. func ByCtype(opts ...sql.OrderTermOption) OrderOption {
  118. return sql.OrderByField(FieldCtype, opts...).ToFunc()
  119. }
  120. // ByContactsField orders the results by contacts field.
  121. func ByContactsField(field string, opts ...sql.OrderTermOption) OrderOption {
  122. return func(s *sql.Selector) {
  123. sqlgraph.OrderByNeighborTerms(s, newContactsStep(), sql.OrderByField(field, opts...))
  124. }
  125. }
  126. // ByLabelsField orders the results by labels field.
  127. func ByLabelsField(field string, opts ...sql.OrderTermOption) OrderOption {
  128. return func(s *sql.Selector) {
  129. sqlgraph.OrderByNeighborTerms(s, newLabelsStep(), sql.OrderByField(field, opts...))
  130. }
  131. }
  132. func newContactsStep() *sqlgraph.Step {
  133. return sqlgraph.NewStep(
  134. sqlgraph.From(Table, FieldID),
  135. sqlgraph.To(ContactsInverseTable, FieldID),
  136. sqlgraph.Edge(sqlgraph.M2O, true, ContactsTable, ContactsColumn),
  137. )
  138. }
  139. func newLabelsStep() *sqlgraph.Step {
  140. return sqlgraph.NewStep(
  141. sqlgraph.From(Table, FieldID),
  142. sqlgraph.To(LabelsInverseTable, FieldID),
  143. sqlgraph.Edge(sqlgraph.M2O, true, LabelsTable, LabelsColumn),
  144. )
  145. }