summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/design_management_new/graphql/fragments/design_note.fragment.graphql
blob: 26edd2c0be15b43a04883da99004222db0b83e2d (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
26
27
28
29
#import "./diff_refs.fragment.graphql"
#import "~/graphql_shared/fragments/author.fragment.graphql"
#import "./note_permissions.fragment.graphql"

fragment DesignNote on Note {
  id
  author {
    ...Author
  }
  body
  bodyHtml
  createdAt
  resolved
  position {
    diffRefs {
      ...DesignDiffRefs
    }
    x
    y
    height
    width
  }
  userPermissions {
    ...DesignNotePermissions
  }
  discussion {
    id
  }
}