-
Alex Kalderimis authored
This allows the number of files changed in a MR to be counted, using queries such as: ```graphql query { project(fullPath: "group/project") { mergeRequest(iid: "1") { diffStatsSummary { fileCount } } } } ```d23a7197
This allows the number of files changed in a MR to be counted, using
queries such as:
```graphql
query {
project(fullPath: "group/project") {
mergeRequest(iid: "1") {
diffStatsSummary { fileCount }
}
}
}
```