Commit 00c4ae28 authored by Donald Cook's avatar Donald Cook Committed by Kushal Pandya

Add limit to epics requested from backend on Roadmap

parent f0cbff33
......@@ -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