Creating folders
How to create a folder or shared folder with the organization
Creating a folder
mutation CreateFolderMutation($parentId: UUID, $folder: FolderInput!) {
createFolder(parent_id: $parentId, folder: $folder) {
id
name
type
created_at
parentFolder {
id
name
}
}
}{
"parentId": "abc123",
"folder": {
"name": "Signed document"
}
}Renaming a folder
Last updated