mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-30 07:38:35 +00:00
chore: bump all go deps (#507)
* bump all deps
* run code-gen
Former-commit-id: a042496c71
This commit is contained in:
parent
feab9f4c46
commit
a3e607a887
96 changed files with 1651 additions and 491 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"entgo.io/ent"
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"github.com/google/uuid"
|
||||
"github.com/hay-kot/homebox/backend/internal/data/ent/item"
|
||||
|
@ -38,8 +39,9 @@ type ItemField struct {
|
|||
TimeValue time.Time `json:"time_value,omitempty"`
|
||||
// Edges holds the relations/edges for other nodes in the graph.
|
||||
// The values are being populated by the ItemFieldQuery when eager-loading is set.
|
||||
Edges ItemFieldEdges `json:"edges"`
|
||||
item_fields *uuid.UUID
|
||||
Edges ItemFieldEdges `json:"edges"`
|
||||
item_fields *uuid.UUID
|
||||
selectValues sql.SelectValues
|
||||
}
|
||||
|
||||
// ItemFieldEdges holds the relations/edges for other nodes in the graph.
|
||||
|
@ -82,7 +84,7 @@ func (*ItemField) scanValues(columns []string) ([]any, error) {
|
|||
case itemfield.ForeignKeys[0]: // item_fields
|
||||
values[i] = &sql.NullScanner{S: new(uuid.UUID)}
|
||||
default:
|
||||
return nil, fmt.Errorf("unexpected column %q for type ItemField", columns[i])
|
||||
values[i] = new(sql.UnknownType)
|
||||
}
|
||||
}
|
||||
return values, nil
|
||||
|
@ -163,11 +165,19 @@ func (_if *ItemField) assignValues(columns []string, values []any) error {
|
|||
_if.item_fields = new(uuid.UUID)
|
||||
*_if.item_fields = *value.S.(*uuid.UUID)
|
||||
}
|
||||
default:
|
||||
_if.selectValues.Set(columns[i], values[i])
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Value returns the ent.Value that was dynamically selected and assigned to the ItemField.
|
||||
// This includes values selected through modifiers, order, etc.
|
||||
func (_if *ItemField) Value(name string) (ent.Value, error) {
|
||||
return _if.selectValues.Get(name)
|
||||
}
|
||||
|
||||
// QueryItem queries the "item" edge of the ItemField entity.
|
||||
func (_if *ItemField) QueryItem() *ItemQuery {
|
||||
return NewItemFieldClient(_if.config).QueryItem(_if)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue