0

I'm trying to make a graphql query but I can't retrieve the MergeRequests from a open repository. What am i doing wrong?

{
  project(fullPath: "gitlab-org/gitlab-ce") {
    archived
    forksCount
    mergeRequests(last: 2) {
      edges {
        cursor
        node {
          id
        }
      }
    }
  }
}

This query returned empty edges... enter image description here

Marco Daniel
  • 5,467
  • 5
  • 28
  • 36
Malus
  • 39
  • 5

1 Answers1

0

This was resolved in this last gitlab version :)

Malus
  • 39
  • 5