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

design.fragment.graphql « fragments « graphql « design_management_legacy « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b1703e41c34cf0b64912a6cdde324e2f4df861d (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
#import "./design_note.fragment.graphql"
#import "./design_list.fragment.graphql"
#import "./diff_refs.fragment.graphql"
#import "./discussion_resolved_status.fragment.graphql"

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