feat(core): Add method (getMany) to folder repository to filter, sort, and paginate folders (no-changelog) (#13290)

This commit is contained in:
Ricardo Espinoza
2025-02-17 09:05:12 -05:00
committed by GitHub
parent 5b82f34773
commit 82d2fa6e67
8 changed files with 851 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import { ExecutionData } from './execution-data';
import { ExecutionEntity } from './execution-entity';
import { ExecutionMetadata } from './execution-metadata';
import { Folder } from './folder';
import { FolderTagMapping } from './folder-tag-mapping';
import { InstalledNodes } from './installed-nodes';
import { InstalledPackages } from './installed-packages';
import { InvalidAuthToken } from './invalid-auth-token';
@@ -68,4 +69,5 @@ export const entities = {
TestRun,
TestCaseExecution,
Folder,
FolderTagMapping,
};