mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-27 10:35:58 +00:00
14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
import { BrowsePathResolver } from '@graphql-mock/fixtures/browsePathHelper';
|
|
import { chartBrowsePaths, filterChartByPath } from '@graphql-mock/fixtures/searchResult/chartSearchResult';
|
|
import { EntityType } from '@types';
|
|
|
|
const browsePathResolver = new BrowsePathResolver({
|
|
entityType: EntityType.Chart,
|
|
paths: chartBrowsePaths,
|
|
filterEntityHandler: filterChartByPath,
|
|
});
|
|
|
|
export default {
|
|
...browsePathResolver.getBrowse(),
|
|
};
|