// Code generated by ent, DO NOT EDIT. package ent import ( "fmt" "strings" "time" "tss-rocks-be/ent/category" "entgo.io/ent" "entgo.io/ent/dialect/sql" ) // Category is the model entity for the Category schema. type Category struct { config `json:"-"` // ID of the ent. ID int `json:"id,omitempty"` // CreatedAt holds the value of the "created_at" field. CreatedAt time.Time `json:"created_at,omitempty"` // UpdatedAt holds the value of the "updated_at" field. UpdatedAt time.Time `json:"updated_at,omitempty"` // Edges holds the relations/edges for other nodes in the graph. // The values are being populated by the CategoryQuery when eager-loading is set. Edges CategoryEdges `json:"edges"` selectValues sql.SelectValues } // CategoryEdges holds the relations/edges for other nodes in the graph. type CategoryEdges struct { // Contents holds the value of the contents edge. Contents []*CategoryContent `json:"contents,omitempty"` // Posts holds the value of the posts edge. Posts []*Post `json:"posts,omitempty"` // DailyItems holds the value of the daily_items edge. DailyItems []*Daily `json:"daily_items,omitempty"` // loadedTypes holds the information for reporting if a // type was loaded (or requested) in eager-loading or not. loadedTypes [3]bool } // ContentsOrErr returns the Contents value or an error if the edge // was not loaded in eager-loading. func (e CategoryEdges) ContentsOrErr() ([]*CategoryContent, error) { if e.loadedTypes[0] { return e.Contents, nil } return nil, &NotLoadedError{edge: "contents"} } // PostsOrErr returns the Posts value or an error if the edge // was not loaded in eager-loading. func (e CategoryEdges) PostsOrErr() ([]*Post, error) { if e.loadedTypes[1] { return e.Posts, nil } return nil, &NotLoadedError{edge: "posts"} } // DailyItemsOrErr returns the DailyItems value or an error if the edge // was not loaded in eager-loading. func (e CategoryEdges) DailyItemsOrErr() ([]*Daily, error) { if e.loadedTypes[2] { return e.DailyItems, nil } return nil, &NotLoadedError{edge: "daily_items"} } // scanValues returns the types for scanning values from sql.Rows. func (*Category) scanValues(columns []string) ([]any, error) { values := make([]any, len(columns)) for i := range columns { switch columns[i] { case category.FieldID: values[i] = new(sql.NullInt64) case category.FieldCreatedAt, category.FieldUpdatedAt: values[i] = new(sql.NullTime) default: values[i] = new(sql.UnknownType) } } return values, nil } // assignValues assigns the values that were returned from sql.Rows (after scanning) // to the Category fields. func (c *Category) assignValues(columns []string, values []any) error { if m, n := len(values), len(columns); m < n { return fmt.Errorf("mismatch number of scan values: %d != %d", m, n) } for i := range columns { switch columns[i] { case category.FieldID: value, ok := values[i].(*sql.NullInt64) if !ok { return fmt.Errorf("unexpected type %T for field id", value) } c.ID = int(value.Int64) case category.FieldCreatedAt: if value, ok := values[i].(*sql.NullTime); !ok { return fmt.Errorf("unexpected type %T for field created_at", values[i]) } else if value.Valid { c.CreatedAt = value.Time } case category.FieldUpdatedAt: if value, ok := values[i].(*sql.NullTime); !ok { return fmt.Errorf("unexpected type %T for field updated_at", values[i]) } else if value.Valid { c.UpdatedAt = value.Time } default: c.selectValues.Set(columns[i], values[i]) } } return nil } // Value returns the ent.Value that was dynamically selected and assigned to the Category. // This includes values selected through modifiers, order, etc. func (c *Category) Value(name string) (ent.Value, error) { return c.selectValues.Get(name) } // QueryContents queries the "contents" edge of the Category entity. func (c *Category) QueryContents() *CategoryContentQuery { return NewCategoryClient(c.config).QueryContents(c) } // QueryPosts queries the "posts" edge of the Category entity. func (c *Category) QueryPosts() *PostQuery { return NewCategoryClient(c.config).QueryPosts(c) } // QueryDailyItems queries the "daily_items" edge of the Category entity. func (c *Category) QueryDailyItems() *DailyQuery { return NewCategoryClient(c.config).QueryDailyItems(c) } // Update returns a builder for updating this Category. // Note that you need to call Category.Unwrap() before calling this method if this Category // was returned from a transaction, and the transaction was committed or rolled back. func (c *Category) Update() *CategoryUpdateOne { return NewCategoryClient(c.config).UpdateOne(c) } // Unwrap unwraps the Category entity that was returned from a transaction after it was closed, // so that all future queries will be executed through the driver which created the transaction. func (c *Category) Unwrap() *Category { _tx, ok := c.config.driver.(*txDriver) if !ok { panic("ent: Category is not a transactional entity") } c.config.driver = _tx.drv return c } // String implements the fmt.Stringer. func (c *Category) String() string { var builder strings.Builder builder.WriteString("Category(") builder.WriteString(fmt.Sprintf("id=%v, ", c.ID)) builder.WriteString("created_at=") builder.WriteString(c.CreatedAt.Format(time.ANSIC)) builder.WriteString(", ") builder.WriteString("updated_at=") builder.WriteString(c.UpdatedAt.Format(time.ANSIC)) builder.WriteByte(')') return builder.String() } // Categories is a parsable slice of Category. type Categories []*Category