aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/MessageHistory.graphql
blob: 6daab75c9922297c1ebca526ee48151a6a8fcc30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "./MessageCommentFragment.graphql"
#import "./MessageCreateFragment.graphql"

query MessageHistory($bugIdPrefix: String!) {
  repository {
    name
    bug(prefix: $bugIdPrefix) {
      timeline {
        comments: nodes {
          ...Create
          ...AddComment
        }
      }
    }
  }
}