Essentially, I’m able to get the list of the events for a given PR, e.g.
timelineItems(first: 100) {
updatedAt
nodes {
__typename
}
}
But is there a way to figure out when did each of these events happen?
Particularly, I’m looking for information when the REVIEW_REQUESTED_EVENT
happened, i.e. when did the author request the review.
I have an updatedAt
field, but it’s against the timelineItems
so, I’d say this is when the collection of events was updated last.