ReadWithResolver will read a bug from its Id, with custom resolvers
(repo repository.ClockedRepo, resolvers entity.Resolvers, id entity.Id)
| 65 | |
| 66 | // ReadWithResolver will read a bug from its Id, with custom resolvers |
| 67 | func ReadWithResolver(repo repository.ClockedRepo, resolvers entity.Resolvers, id entity.Id) (*Bug, error) { |
| 68 | return dag.Read(def, wrapper, repo, resolvers, id) |
| 69 | } |
| 70 | |
| 71 | // ReadAll read and parse all local bugs |
| 72 | func ReadAll(repo repository.ClockedRepo) <-chan entity.StreamedEntity[*Bug] { |