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

issue.query.graphql « queries « popover « issuable « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47a62e2b6eaa707ce3d8359052ec596f971b8a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
query issue($projectPath: ID!, $iid: String!) {
  project(fullPath: $projectPath) {
    id
    issue(iid: $iid) {
      id
      title
      createdAt
      state
    }
  }
}