tss-rocks/backend/ent/contributorrole/contributorrole.go
CDN 05ddc1f783
Some checks failed
Build Backend / Build Docker Image (push) Successful in 3m33s
Test Backend / test (push) Failing after 31s
[feature] migrate to monorepo
2025-02-21 00:49:20 +08:00

83 lines
2.8 KiB
Go

// Code generated by ent, DO NOT EDIT.
package contributorrole
import (
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
)
const (
// Label holds the string label denoting the contributorrole type in the database.
Label = "contributor_role"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldName holds the string denoting the name field in the database.
FieldName = "name"
// EdgePostContributors holds the string denoting the post_contributors edge name in mutations.
EdgePostContributors = "post_contributors"
// Table holds the table name of the contributorrole in the database.
Table = "contributor_roles"
// PostContributorsTable is the table that holds the post_contributors relation/edge.
PostContributorsTable = "post_contributors"
// PostContributorsInverseTable is the table name for the PostContributor entity.
// It exists in this package in order to avoid circular dependency with the "postcontributor" package.
PostContributorsInverseTable = "post_contributors"
// PostContributorsColumn is the table column denoting the post_contributors relation/edge.
PostContributorsColumn = "contributor_role_post_contributors"
)
// Columns holds all SQL columns for contributorrole fields.
var Columns = []string{
FieldID,
FieldName,
}
// ValidColumn reports if the column name is valid (part of the table columns).
func ValidColumn(column string) bool {
for i := range Columns {
if column == Columns[i] {
return true
}
}
return false
}
var (
// NameValidator is a validator for the "name" field. It is called by the builders before save.
NameValidator func(string) error
)
// OrderOption defines the ordering options for the ContributorRole queries.
type OrderOption func(*sql.Selector)
// ByID orders the results by the id field.
func ByID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldID, opts...).ToFunc()
}
// ByName orders the results by the name field.
func ByName(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldName, opts...).ToFunc()
}
// ByPostContributorsCount orders the results by post_contributors count.
func ByPostContributorsCount(opts ...sql.OrderTermOption) OrderOption {
return func(s *sql.Selector) {
sqlgraph.OrderByNeighborsCount(s, newPostContributorsStep(), opts...)
}
}
// ByPostContributors orders the results by post_contributors terms.
func ByPostContributors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
return func(s *sql.Selector) {
sqlgraph.OrderByNeighborTerms(s, newPostContributorsStep(), append([]sql.OrderTerm{term}, terms...)...)
}
}
func newPostContributorsStep() *sqlgraph.Step {
return sqlgraph.NewStep(
sqlgraph.From(Table, FieldID),
sqlgraph.To(PostContributorsInverseTable, FieldID),
sqlgraph.Edge(sqlgraph.O2M, false, PostContributorsTable, PostContributorsColumn),
)
}