summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/work_item_note.fragment.graphql
blob: 5215ea10918c3a1b8c80be96fda28e168cc1564a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "~/graphql_shared/fragments/user.fragment.graphql"

fragment WorkItemNote on Note {
  id
  bodyHtml
  system
  internal
  systemNoteIconName
  createdAt
  author {
    ...User
  }
  userPermissions {
    adminNote
  }
}