Moving document to a folder
How to move a document to a folder
mutation {
moveDocumentToFolder(
document_id: "DOCUMENT_ID",
folder_id: "FOLDER_DESTINATION_ID"
)
}
Last updated
How to move a document to a folder
mutation {
moveDocumentToFolder(
document_id: "DOCUMENT_ID",
folder_id: "FOLDER_DESTINATION_ID"
)
}
Last updated
mutation {
moveDocumentToFolder(
document_id: "DOCUMENT_ID",
current_folder_id: "CURRENT_FOLDER_ID",
folder_id: "FOLDER_DESTINATION_ID"
)
}mutation {
moveDocumentToFolder(
document_id: "DOCUMENT_ID",
folder_id: "FOLDER_DESTINATION_ID",
context: ORGANIZATION # For organization folders, GROUP for group folders
)
}mutation {
moveDocumentToFolder(
document_id: "DOCUMENT_ID",
folder_id: null
)
}