OBJECT

Folder

link GraphQL Schema definition

1type Folder {
2
3# The ID of this folder
4id: ID!
5
6treeObjectId: ID! @deprecated( reason: "obsolete" )
7
8# The name of this folder
9name: String
10
11# An optional description
12description: String
13
14createdDateTime: DateTime
15
16modifiedDateTime: DateTime
17
18ownerId: String
19
20# The parent folder
21parent: Folder
22
23# The subfolders of this folder
24# Deprecated: Use paginated childFolders instead.
25subfolders: [Folder!]
26
27# A paginated list of child folders of this folders
28#
29# Arguments
30# names: Provide a list of names to filter folders
31# entityTags: Provide a list of entity tags to filter by
32childFolders(
33offset: Int,
34limit: Int,
35names: [String],
36nameMatch: StringMatch,
37orderBy: [FolderOrderBy!],
38entityTags: [EntityTagFilter!]
39): FolderList
40
41# The organization that owns this folder
42organization: Organization
43
44# The ID of the organization that owns this folder
45organizationId: ID
46
47typeId: Int
48
49rootFolderTypeId: Int
50
51# The maximum depth of child folders allowed
52maxDepth: Int
53
54orderIndex: Int
55
56# The folder status
57status: FolderStatus
58
59# The ordered path of the folder hierarchy. The first element
60# is always a root folder, and the last is this folder's parent.
61folderPath: [Folder!]
62
63# TemporalDataObjects that are filed in this folder
64childTDOs(offset: Int, limit: Int): TDOList
65
66# Watchlists that are filed in this folder
67#
68# Arguments
69# name: Provide a name to filter watchlists
70# names: Provide a list of names to filter folders
71childWatchlists(
72offset: Int,
73limit: Int,
74name: String,
75names: [String],
76nameMatch: StringMatch
77): WatchlistList
78
79# The read/write permissions for a shared folder
80sharedAccess: [String]
81
82sharedWith: SharedWith
83
84contentTemplates: [FolderContentTemplate!]!
85
86# Collection that are filed in this folder
87#
88# Arguments
89# name: Provide a name to filter collections
90childCollections(offset: Int, limit: Int, name: String): CollectionList
91
92# Applications that are filed in this folder
93childApplications(offset: Int, limit: Int): ApplicationList
94
95# The tags associated with the folder
96entityTags: [EntityTag]
97
98}