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

epic_details.query.graphql « epic « queries « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 406d630b1802e44f8d6f54cd33327a16bfd5e7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query epicDetails($fullPath: ID!, $iid: ID!) {
  group(fullPath: $fullPath) {
    __typename
    epic(iid: $iid) {
      __typename
      participants {
        __typename
        edges {
          __typename
          node {
            __typename
            name
            avatarUrl
            webUrl
          }
        }
      }
    }
  }
}