Skip to content
GitLab
Next
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • GitLab GitLab
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 44,761
    • Issues 44,761
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 1,332
    • Merge requests 1,332
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • GitLab.orgGitLab.org
  • GitLabGitLab
  • Issues
  • #214713
Closed
Open
Issue created Apr 16, 2020 by Mario de la Ossa@mdelaossa💬Contributor

Display iterations list

After #214846 (closed) is ready, we need to add the actual GraphQL API and views to be able to add sprints

This includes ONLY group views. Initially we will only create group sprints.

This Issue is only related to Sprint creation and assignment to Issues.

Example GraphQL query for getting group sprints:

{
  group(fullPath: "gitlab-org") {
    sprints(first: 10) {
      nodes {
        title
        state
      }
    }
  }
}

which returns, for example,

{
  "data": {
    "group": {
      "sprints": {
        "nodes": [
          {
            "title": "1",
            "state": "active"
          }
        ]
      }
    }
  }
}
Edited Apr 29, 2020 by Donald Cook
Assignee
Assign to
Time tracking