Moving Folders
Moving folders to other folders
mutation moveFolderToFolder($folderId: String!, $targetFolderId: String!) {
moveFolder(input: { folderId: $folderId, targetFolderId: $targetFolderId }) {
success
folder {
id
parentId # this should be then the targetFolderId
}
}
}
// variables
{
"folderId": "...",
"targetFolderId": "..."
}