Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « table « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e973a34e5c533869611476d7b5b5cbc690202af (plain)
1
2
3
4
5
6
7
8
9
export const GRAPHQL_PAGE_SIZE = 30;

export const initialPaginationState = {
  currentPage: 1,
  prevPageCursor: '',
  nextPageCursor: '',
  first: GRAPHQL_PAGE_SIZE,
  last: null,
};