OBJECT
Folder
link GraphQL Schema definition
1 type Folder { 2 3 #   The ID of this folder 4 : ID!  5 6 : ID! @deprecated( reason: "obsolete"  ) 7 8 #   The name of this folder 9 : String  10 11 #   An optional description 12 : String  13 14 : DateTime  15 16 : DateTime  17 18 : String  19 20 #   The parent folder 21 : Folder  22 23 #   The subfolders of this folder 24 #   Deprecated: Use paginated childFolders instead. 25 : [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 32 ( 33 : Int, 34 : Int, 35 : [String], 36 : StringMatch, 37 : [FolderOrderBy!], 38 : [EntityTagFilter!] 39 ): FolderList  40 41 #   The organization that owns this folder 42 : Organization  43 44 #   The ID of the organization that owns this folder 45 : ID  46 47 : Int  48 49 : Int  50 51 #   The maximum depth of child folders allowed 52 : Int  53 54 : Int  55 56 #   The folder status 57 : 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. 61 : [Folder!]  62 63 #   TemporalDataObjects that are filed in this folder 64 (: Int, : 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 71 ( 72 : Int, 73 : Int, 74 : String, 75 : [String], 76 : StringMatch 77 ): WatchlistList  78 79 #   The read/write permissions for a shared folder 80 : [String]  81 82 : SharedWith  83 84 : [FolderContentTemplate!]!  85 86 #   Collection that are filed in this folder 87 #  88 # Arguments 89 #   name: Provide a name to filter collections 90 (: Int, : Int, : String): CollectionList  91 92 #   Applications that are filed in this folder 93 (: Int, : Int): ApplicationList  94 95 #   The tags associated with the folder 96 : [EntityTag]  97 98 } 
              link Required by
- Collection
 - Folder
 - FolderList
 - MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
 - Organization
 - QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
 - TemporalDataObject
 - UserA user represents a user account within an organization.
 - Watchlist