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

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