Commit 5ebfde5b authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '285440-roadmap-epics-limit-improvements' into 'master'

Add limit to epics requested from backend on Roadmap

See merge request gitlab-org/gitlab!52154
parents e716fbf4 00c4ae28
......@@ -11,6 +11,7 @@ query groupEpics(
$milestoneTitle: String = ""
$confidential: Boolean
$search: String = ""
$first: Int = 1001
) {
group(fullPath: $fullPath) {
id
......@@ -25,6 +26,7 @@ query groupEpics(
milestoneTitle: $milestoneTitle
confidential: $confidential
search: $search
first: $first
) {
edges {
node {
......
......@@ -45,6 +45,7 @@ const fetchGroupEpics = (
variables = {
...variables,
...filterParams,
first: gon.roadmap_epics_limit + 1,
};
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment