Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alert_note.fragment.graphql « fragments « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74b425717a005165c9f214c3d2dc363093c05e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/graphql_shared/fragments/author.fragment.graphql"

fragment AlertNote on Note {
  id
  author {
    id
    state
    ...Author
  }
  body
  bodyHtml
  createdAt
  discussion {
    id
  }
  systemNoteIconName
}