Hi all
Is it possible with GraphQl to get information when a user became a collaborator?
query { repository(owner:"Lelikboss", name:"kill-hit") { collaborators(first: 100){ totalCount nodes{name createdAt updatedAt}}}}
Output
"data": {
"repository": {
"collaborators": {
"totalCount": 3,
"nodes": [
{
"name": "Lubov Danchenko",
"createdAt": "2016-09-09T07:46:08Z",
"updatedAt": "2022-04-07T07:55:42Z"
},
{
"name": "Alexey Alexeew",
"createdAt": "2021-02-16T13:32:29Z",
"updatedAt": "2022-04-12T20:29:22Z"
},
{
"name": "Anton Kovalchuk",
"createdAt": "2021-03-02T15:48:14Z",
"updatedAt": "2022-01-27T20:13:20Z"
}
]
}
}
}