Fix mergedBy JSON export for PRs

This commit is contained in:
Mislav Marohnić 2023-01-18 21:41:07 +01:00
parent 638f6ccc30
commit 8b3e5c1554
No known key found for this signature in database

View file

@ -263,7 +263,7 @@ func IssueGraphQL(fields []string) string {
case "author":
q = append(q, `author{login,...on User{id,name}}`)
case "mergedBy":
q = append(q, `mergedBy{login}`)
q = append(q, `mergedBy{login,...on User{id,name}}`)
case "headRepositoryOwner":
q = append(q, `headRepositoryOwner{id,login,...on User{name}}`)
case "headRepository":