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
}
}
}
}
}