summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/queries/getIssueParticipants.query.graphql
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
      }
    }
  }
}