The issue has been closed

I know that this is probably caused due to broken unix timestamps in the repository, but it should be possible to exclude those broken timestamps.
angular/angular.js

posted by fregante almost 5 years ago 
I'm wondering why it says 51 years though, as 2020 minus 1970 equals 50. Is that GitHub's <relative-time>
element rounding up?
posted by FloEdelmann almost 5 years ago
I guess it's rounding up, because we're already in June.
posted by tobimori almost 5 years ago
we could use this and filter out the 1990 ones
{
repository(owner: "angular", name: "angular.js") {
ref(qualifiedName: "master") {
target {
... on Commit {
history(first: 5, after: "72fbd48f2a805e789fc574176e7a9a87979418d7 8996") {
nodes {
committedDate
resourcePath
}
}
}
}
}
}
}
posted by yakov116 almost 5 years ago
Only it if that replaces the current fetchDom
request
posted by fregante almost 5 years ago