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

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

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