diff options
Diffstat (limited to 'bridge/github/import_query.go')
-rw-r--r-- | bridge/github/import_query.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bridge/github/import_query.go b/bridge/github/import_query.go index 38cdc444..ef26b3e8 100644 --- a/bridge/github/import_query.go +++ b/bridge/github/import_query.go @@ -245,3 +245,15 @@ type timelineQuery struct { } `graphql:"... on Issue"` } `graphql:"node(id: $gqlNodeId)"` } + +type commentEditQuery_A struct { + Node struct { + Typename githubv4.String `graphql:"__typename"` + IssueComment struct { + UserContentEdits struct { + Nodes []userContentEdit + PageInfo pageInfo + } `graphql:"userContentEdits(last: $commentEditLast, before: $commentEditBefore)"` + } `graphql:"... on IssueComment"` + } `graphql:"node(id: $gqlNodeId)"` +} |