summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/notes/work_item_discussion_note.fragment.graphql
blob: 635faf278926a0d2c8344777b957462b90538f38 (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 "ee_else_ce/work_items/graphql/notes/work_item_note.fragment.graphql"

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