OBJECT

FolderSummaryDetail

link GraphQL Schema definition

1type FolderSummaryDetail {
2
3id: ID!
4
5treeObjectId: ID! @deprecated( reason: "obsolete" )
6
7typeId: Int
8
9childFoldersCount: Int!
10
11childNonFolderObjectsCount: Int!
12
13childWatchlistsIds: [String]
14
15createdBy: User
16
17depth: Int
18
19fingerprints: JSONData
20
21marketCount: Int
22
23trackMyPrograms: Boolean
24
25mediaSourceTypeIds: [Int]
26
27orderIndex: Int
28
29parentTreeObjectId: String @deprecated( reason: "obsolete" )
30
31parentFolderId: ID
32
33programCount: Int
34
35searchTerms: [String]
36
37trackingUnitName: String
38
39trackingUnitStartDate: DateTime
40
41trackingUnitStopDate: DateTime
42
43createdDateTime: DateTime!
44
45modifiedDateTime: DateTime
46
47}