aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/pages/bug/MessageHistory.graphql
blob: 6daab75c9922297c1ebca526ee48151a6a8fcc30 (plain) (tree)
1
2
3
4
5
6


                                          
                                             
              
        









                               
#import "./MessageCommentFragment.graphql"
#import "./MessageCreateFragment.graphql"

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