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

issue_sidebar.query.graphql « queries « issuable_sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe01d2c2e780082d1a47c9100012566bdf56c199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "~/graphql_shared/fragments/author.fragment.graphql"

query getProjectIssue($iid: String!, $fullPath: ID!) {
  project(fullPath: $fullPath) {
    issue(iid: $iid) {
      assignees {
        nodes {
          ...Author
          id
          state
        }
      }
    }
  }
}