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: 42e646391a8ffe035a32d7a22758646059a12907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "~/graphql_shared/fragments/author.fragment.graphql"

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