Mutation - 저장소 Resource 이동 (Path 기반)
저장소 Resource 이동 (Path 기반)
Schema
Input Objects
KEY OBJECT DESC sourcePathString 원본 리소스 경로 (필수) isFolderBoolean 폴더 여부 (필수) destFolderPathString 이동 할 목적지 폴더 경로 (필수) unifiedStorageIdString 저장소 아이디 (필수) adminPage Boolean 관리자 페이지 여부
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
mutation moveUnifiedStorageResourceByPath($sourcePath: String!, $isFolder: Boolean!, $destFolderPath: String!, $unifiedStorageId: String!, $adminPage: Boolean) {
moveUnifiedStorageResourceByPath(sourcePath: $sourcePath, isFolder: $isFolder, destFolderPath: $destFolderPath, unifiedStorageId: $unifiedStorageId, adminPage: $adminPage)
}
Sample
VARIABLES
{
"sourcePath": "id_aaaa",
"isFolder": false,
"destFolderPath": "id_bbbb",
"unifiedStorageId": "7e4d49be6fdb11efb6897e3da3d1af5e",
"adminPage": false
}RESPONSE
{
"data": {
"moveUnifiedStorageResourceByPath": null
}
}