OBJECT
Folder
link GraphQL Schema definition
1 type Folder { 2 3 # The ID of this folder 4 ID! : 5 6 ID! : 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 ( 32 Int, : 33 Int, : 34 String], : [ 35 StringMatch : 36 ): FolderList 37 38 # The organization that owns this folder 39 Organization : 40 41 # The ID of the organization that owns this folder 42 ID : 43 44 Int : 45 46 Int : 47 48 # The maximum depth of child folders allowed 49 Int : 50 51 Int : 52 53 # The folder status 54 FolderStatus : 55 56 # The ordered path of the folder hierarchy. The first element 57 # is always a root folder, and the last is this folder's parent. 58 Folder!] : [ 59 60 # TemporalDataObjects that are filed in this folder 61 Int, : Int): TDOList ( : 62 63 # Watchlists that are filed in this folder 64 # 65 # Arguments 66 # name: Provide a name to filter watchlists 67 # names: Provide a list of names to filter folders 68 ( 69 Int, : 70 Int, : 71 String, : 72 String], : [ 73 StringMatch : 74 ): WatchlistList 75 76 # The read/write permissions for a shared folder 77 String] : [ 78 79 SharedWith : 80 81 FolderContentTemplate!]! : [ 82 83 # Collection that are filed in this folder 84 # 85 # Arguments 86 # name: Provide a name to filter collections 87 Int, : Int, : String): CollectionList ( : 88 89 }
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