Remove Participants related codes for pr view`

This commit is contained in:
Toshiya Doi 2020-04-10 01:01:41 +09:00
parent 531bfbc295
commit 6d0e5bf2b8
5 changed files with 0 additions and 79 deletions

View file

@ -107,12 +107,6 @@ type PullRequest struct {
Milestone struct {
Title string
}
Participants struct {
Nodes []struct {
Login string
}
TotalCount int
}
}
type NotFoundError struct {
@ -423,12 +417,6 @@ func PullRequestByNumber(client *Client, repo ghrepo.Interface, number int) (*Pu
milestone{
title
}
participants(first: 100) {
nodes {
login
}
totalCount
}
}
}
}`
@ -528,12 +516,6 @@ func PullRequestForBranch(client *Client, repo ghrepo.Interface, baseBranch, hea
milestone{
title
}
participants(first: 100) {
nodes {
login
}
totalCount
}
}
}
}