OBJECT

FolderResults

link GraphQL Schema definition

1type FolderResults {
2
3# Folder name
4name: String
5
6# Folder path
7path: String
8
9# Folder issues count
10issuesCount: Int
11
12# Folder tests count
13testsCount: Int
14
15# Folder preconditions count
16preconditionsCount: Int
17
18# Folder children
19folders: JSON
20
21}