aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/LabelChangeFragment.graphql
blob: 07b1d351619d9ccde47a68c836b25046662deb71 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                      
#import "../Author.graphql"
#import "../Label.graphql"

fragment LabelChange on TimelineItem {
  ... on LabelChangeTimelineItem {
    date
    ...authored
    added {
      ...Label
    }
    removed {
      ...Label
    }
  }
}