Welcome to mirror list, hosted at ThFree Co, Russian Federation.

design_note.fragment.graphql « fragments « graphql « design_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2822467132643fd788282fa4592b9b27cb83cb7b (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
30
31
32
33
34
#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
    notes {
      nodes {
        id
      }
    }
  }
}