Skip to content

GitLab Next

  • Menu
Projects Groups Snippets
    • Loading...
  • 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 39,511
    • Issues 39,511
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 1,223
    • Merge requests 1,223
  • Requirements
    • Requirements
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
    • Value stream
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • GitLab.org
  • GitLabGitLab
  • Issues
  • #214713

Closed
Open
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