summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/notes/work_item_discussion_note.fragment.graphql
blob: 58561e33e5305ec28f00b702a891b7fa8ada2f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "./work_item_note.fragment.graphql"

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