// Code generated by ent, DO NOT EDIT. package thread import ( "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) const ( // Label holds the string label denoting the thread type in the database. Label = "thread" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldProjectID holds the string denoting the project_id field in the database. FieldProjectID = "project_id" // FieldThreadID holds the string denoting the thread_id field in the database. FieldThreadID = "thread_id" // EdgeProject holds the string denoting the project edge name in mutations. EdgeProject = "project" // EdgeTraces holds the string denoting the traces edge name in mutations. EdgeTraces = "traces" // Table holds the table name of the thread in the database. Table = "threads" // ProjectTable is the table that holds the project relation/edge. ProjectTable = "threads" // ProjectInverseTable is the table name for the Project entity. // It exists in this package in order to avoid circular dependency with the "project" package. ProjectInverseTable = "projects" // ProjectColumn is the table column denoting the project relation/edge. ProjectColumn = "project_id" // TracesTable is the table that holds the traces relation/edge. TracesTable = "traces" // TracesInverseTable is the table name for the Trace entity. // It exists in this package in order to avoid circular dependency with the "trace" package. TracesInverseTable = "traces" // TracesColumn is the table column denoting the traces relation/edge. TracesColumn = "thread_id" ) // Columns holds all SQL columns for thread fields. var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldProjectID, FieldThreadID, } // 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 } // Note that the variables below are initialized by the runtime // package on the initialization of the application. Therefore, // it should be imported in the main as follows: // // import _ "github.com/looplj/axonhub/internal/ent/runtime" var ( Hooks [1]ent.Hook Policy ent.Policy // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time ) // OrderOption defines the ordering options for the Thread 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() } // ByCreatedAt orders the results by the created_at field. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldCreatedAt, opts...).ToFunc() } // ByUpdatedAt orders the results by the updated_at field. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc() } // ByProjectID orders the results by the project_id field. func ByProjectID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldProjectID, opts...).ToFunc() } // ByThreadID orders the results by the thread_id field. func ByThreadID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldThreadID, opts...).ToFunc() } // ByProjectField orders the results by project field. func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newProjectStep(), sql.OrderByField(field, opts...)) } } // ByTracesCount orders the results by traces count. func ByTracesCount(opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborsCount(s, newTracesStep(), opts...) } } // ByTraces orders the results by traces terms. func ByTraces(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newTracesStep(), append([]sql.OrderTerm{term}, terms...)...) } } func newProjectStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(ProjectInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, true, ProjectTable, ProjectColumn), ) } func newTracesStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(TracesInverseTable, FieldID), sqlgraph.Edge(sqlgraph.O2M, false, TracesTable, TracesColumn), ) }