Folder
A folder that contains documents and other folders
Fields
can_only_share
· Boolean
· When true, the user cannot adjust settings for the folder besides sharing. current_user_can_edit
· Boolean
· If true, the current user can edit the folder description
· String
· The description of the folder documents_count
· Int
· The number of documents within this folder folder_path
· [Folder!]
· The list of parent folders for this folder parent_folder
· Folder
· The parent folder of this folder (nil if there is no parent) rel_user_id
· String
· The ID of the connected user shared_user_groups_count
· Int
· The number of user groups who the folder is shared shared_users_count
· Int
· The number of users who the folder is directly shared with (not through groups) subfolders_count
· Int
· The number of subfolders within this folder Used By
Definition
"""A folder that contains documents and other folders"""type Folder { """ When true, the user cannot adjust settings for the folder besides sharing. """ can_only_share: Boolean
""" The date the folder was made available to the given user """ created_at( """ Select by a specific user """ viewable_user_id: String ): String!
""" If true, the current user can edit the folder """ current_user_can_edit: Boolean
""" The description of the folder """ description: String
""" The number of documents within this folder """ documents_count: Int
""" Include the file in new clients welcome email """ email_on_welcome: Boolean!
""" The ID of the parent folder """ folder_id: String
""" The list of parent folders for this folder """ folder_path( """ Select by a specific client """ client_id: String ): [Folder!]
""" The unique identifier of the folder """ id: ID!
""" The name of the folder """ name: String
""" Owner of this folder """ owner: User
""" The parent folder of this folder (nil if there is no parent) """ parent_folder: Folder
""" In the case of a private folder, the user that this folder is for """ rel_user: User
""" The ID of the connected user """ rel_user_id: String
""" The folder is shared """ shared: Boolean
""" Share the file with new clients automatically """ shared_on_welcome: Boolean!
""" The number of user groups who the folder is shared """ shared_user_groups_count: Int
""" The number of users who the folder is directly shared with (not through groups) """ shared_users_count: Int
""" Share with all members of the organization """ shared_with_dietitians: Boolean!
""" The number of subfolders within this folder """ subfolders_count: Int
""" The folder has a reserved name generated by the system """ system_generated: Boolean!
""" The user groups who have access to this folder """ user_groups: [UserGroup!]!
""" The users who have access to this folder """ users( """ Cursor to fetch results after """ after: Cursor should_paginate: Boolean = false page_size: Int = 100 order_by: UserOrderKeys = LAST_NAME_ASC ): [User!]!
""" The number of users who have access to this folder """ users_count: Int!}