@@ -72,6 +72,10 @@ func ListDiscussions(getGQLClient GetGQLClientFn, t translations.TranslationHelp
72
72
Number githubv4.Int
73
73
Title githubv4.String
74
74
CreatedAt githubv4.DateTime
75
+ UpdatedAt githubv4.DateTime
76
+ Author struct {
77
+ Login githubv4.String
78
+ }
75
79
Category struct {
76
80
Name githubv4.String
77
81
} `graphql:"category"`
@@ -96,6 +100,10 @@ func ListDiscussions(getGQLClient GetGQLClientFn, t translations.TranslationHelp
96
100
Title : github .Ptr (string (n .Title )),
97
101
HTMLURL : github .Ptr (string (n .URL )),
98
102
CreatedAt : & github.Timestamp {Time : n .CreatedAt .Time },
103
+ UpdatedAt : & github.Timestamp {Time : n .UpdatedAt .Time },
104
+ User : & github.User {
105
+ Login : github .Ptr (string (n .Author .Login )),
106
+ },
99
107
DiscussionCategory : & github.DiscussionCategory {
100
108
Name : github .Ptr (string (n .Category .Name )),
101
109
},
@@ -111,6 +119,10 @@ func ListDiscussions(getGQLClient GetGQLClientFn, t translations.TranslationHelp
111
119
Number githubv4.Int
112
120
Title githubv4.String
113
121
CreatedAt githubv4.DateTime
122
+ UpdatedAt githubv4.DateTime
123
+ Author struct {
124
+ Login githubv4.String
125
+ }
114
126
Category struct {
115
127
Name githubv4.String
116
128
} `graphql:"category"`
@@ -134,6 +146,10 @@ func ListDiscussions(getGQLClient GetGQLClientFn, t translations.TranslationHelp
134
146
Title : github .Ptr (string (n .Title )),
135
147
HTMLURL : github .Ptr (string (n .URL )),
136
148
CreatedAt : & github.Timestamp {Time : n .CreatedAt .Time },
149
+ UpdatedAt : & github.Timestamp {Time : n .UpdatedAt .Time },
150
+ User : & github.User {
151
+ Login : github .Ptr (string (n .Author .Login )),
152
+ },
137
153
DiscussionCategory : & github.DiscussionCategory {
138
154
Name : github .Ptr (string (n .Category .Name )),
139
155
},
0 commit comments