summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issuable_sidebar/queries/issue_sidebar.query.graphql
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
        }
      }
    }
  }
}