summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/design_management/graphql/fragments/designNote.fragment.graphql
blob: cb7cfd89abf7dcb632971efe924c7bbfe0aa3bd4 (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 "./diffRefs.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
  }
}