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

design.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: ca5b5a52c71a42f4f667c4a32e51a0b9c55e438b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "./designNote.fragment.graphql"
#import "./designList.fragment.graphql"
#import "./diffRefs.fragment.graphql"

fragment DesignItem on Design {
  ...DesignListItem
  fullPath
  diffRefs {
    ...DesignDiffRefs
  }
  discussions {
    nodes {
      id
      replyId
      notes {
        nodes {
          ...DesignNote
        }
      }
    }
  }
}