fix: fix issues after updated dev branch merge

This commit is contained in:
Christoph Kluge
2025-06-06 13:43:13 +02:00
parent d50dfa5867
commit f946e7e6ab
4 changed files with 27 additions and 27 deletions

View File

@@ -31,7 +31,8 @@ func (r *clusterResolver) Partitions(ctx context.Context, obj *schema.Cluster) (
// StartTime is the resolver for the startTime field.
func (r *jobResolver) StartTime(ctx context.Context, obj *schema.Job) (*time.Time, error) {
panic(fmt.Errorf("not implemented: StartTime - startTime"))
timestamp := time.Unix(obj.StartTime, 0)
return &timestamp, nil
}
// Tags is the resolver for the tags field.