OBJECT
Folder
A folder that contains documents and other folders
link GraphQL Schema definition
- type Folder {
- # When true, the user cannot adjust settings for the folder besides sharing.
- Boolean :
- # The date the folder was made available to the given user
- #
- # Arguments
- # viewable_user_id: [Not documented]
- String): String ( :
- # If true, the current user can edit the folder
- Boolean :
- # The description of the folder
- String :
- # The number of documents within this folder
- Int :
- # Include the file in new clients welcome email
- Boolean :
- # The ID of the parent folder
- String :
- # The list of parent folders for this folder
- #
- # Arguments
- # client_id: [Not documented]
- String): [Folder] ( :
- ID! :
- # The name of the folder
- String :
- # Owner of this folder
- User :
- # The parent folder of this folder (nil if there is no parent)
- Folder :
- # In the case of a private folder, the user that this folder is for
- User :
- # The ID of the connected user
- String :
- # The folder shared
- Boolean :
- # Share the file with new clients automatically
- Boolean :
- # The number of user groups who the folder is shared
- Int :
- # The number of users who the folder is directly shared with (not through groups)
- Int :
- # Share with all members of the organization
- Boolean :
- # The number of subfolders within this folder
- Int :
- # The user groups who have access to this folder
- UserGroup!]! : [
- # The users who have access to this folder
- User!]! : [
- }