Add metadata to PullRequest struct
This commit is contained in:
parent
e10ccefaf5
commit
125ff06b2c
1 changed files with 32 additions and 0 deletions
|
|
@ -61,6 +61,38 @@ type PullRequest struct {
|
|||
}
|
||||
}
|
||||
}
|
||||
Assignees struct {
|
||||
Nodes []struct {
|
||||
Login string
|
||||
}
|
||||
TotalCount int
|
||||
}
|
||||
Labels struct {
|
||||
Nodes []struct {
|
||||
Name string
|
||||
}
|
||||
TotalCount int
|
||||
}
|
||||
ProjectCards struct {
|
||||
Nodes []struct {
|
||||
Project struct {
|
||||
Name string
|
||||
}
|
||||
Column struct {
|
||||
Name string
|
||||
}
|
||||
}
|
||||
TotalCount int
|
||||
}
|
||||
Milestone struct {
|
||||
Title string
|
||||
}
|
||||
Participants struct {
|
||||
Nodes []struct {
|
||||
Login string
|
||||
}
|
||||
TotalCount int
|
||||
}
|
||||
}
|
||||
|
||||
type NotFoundError struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue