blob: a527399e61ee8eb9f685e6f080dfc27bee7d1d87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package github
type createIssueMutation struct {
CreateIssue struct {
Issue struct {
ID string `graphql:"id"`
URL string `graphql:"url"`
}
} `graphql:"createIssue(input:$input)"`
}
type updateIssueMutation struct {
UpdateIssue struct {
Issue struct {
ID string `graphql:"id"`
URL string `graphql:"url"`
}
} `graphql:"updateIssue(input:$input)"`
}
type addCommentToIssueMutation struct {
AddComment struct {
CommentEdge struct {
Node struct {
ID string `graphql:"id"`
URL string `graphql:"url"`
}
}
} `graphql:"addComment(input:$input)"`
}
type updateIssueCommentMutation struct {
IssueComment struct {
ID string `graphql:"id"`
URL string `graphql:"url"`
} `graphql:"updateIssueComment(input:$input)"`
}
type removeLabelsFromLabelableMutation struct {
AddLabels struct{} `graphql:"removeLabelsFromLabelable(input:$input)"`
}
type addLabelsToLabelableMutation struct {
RemoveLabels struct{} `graphql:"addLabelsToLabelable(input:$input)"`
}
|