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

getIssueParticipants.query.graphql « queries « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 612a0c02e828e3c3162cef5cf3a45be78460ef43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query issueParticipants($id: IssueID!) {
  issue(id: $id) {
    participants {
      nodes {
        username
        name
        webUrl
        avatarUrl
        id
      }
    }
  }
}