4 lines
279 B
JavaScript
4 lines
279 B
JavaScript
const TREE_PAGE_LIMIT = 1000; // the maximum amount of items per page
|
|
|
|
export const TREE_PAGE_SIZE = 100; // the amount of items to be fetched per (batch) request
|
|
export const TREE_INITIAL_FETCH_COUNT = TREE_PAGE_LIMIT / TREE_PAGE_SIZE; // the amount of (batch) requests to make
|