We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f1708 commit 2c2cb51Copy full SHA for 2c2cb51
1 file changed
pkg/github/granular_tools_test.go
@@ -810,9 +810,18 @@ func TestGranularSetIssueFields(t *testing.T) {
810
URL githubv4.String
811
}
812
IssueFieldValues []struct {
813
- Field struct {
+ TextValue struct {
814
+ Value string
815
+ } `graphql:"... on IssueFieldTextValue"`
816
+ SingleSelectValue struct {
817
Name string
818
+ } `graphql:"... on IssueFieldSingleSelectValue"`
819
+ DateValue struct {
820
821
} `graphql:"... on IssueFieldDateValue"`
822
+ NumberValue struct {
823
+ Value float64
824
+ } `graphql:"... on IssueFieldNumberValue"`
825
826
} `graphql:"setIssueFieldValue(input: $input)"`
827
}{},
0 commit comments