Mutation - 저장소 Resource 폴더 생성 (Path 기반)
저장소 Resource 폴더 생성 (Path 기반)
Schema
Input Objects
KEY OBJECT DESC parentFolderPathString 부모 폴더 경로 (필수) folderNameString 폴더명 (필수) unifiedStorageIdString 저장소 아이디 (필수) adminPage Boolean 관리자 페이지 여부
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
mutation createUnifiedStorageFolderResourceByPath($parentFolderPath: String!, $folderName: String!, $unifiedStorageId: String!, $adminPage: Boolean) {
createUnifiedStorageFolderResourceByPath(parentFolderPath: $parentFolderPath, folderName: $folderName, unifiedStorageId: $unifiedStorageId, adminPage: $adminPage)
}
Sample
VARIABLES
{
"parentFolderPath": "/shieldrive_folder/20/e1c8f8206fdb11efb646bb9103c31359",
"folderName": "테스트폴더",
"unifiedStorageId": "7e4d49be6fdb11efb6897e3da3d1af5e",
"adminPage": false
}RESPONSE
{
"data": {
"createUnifiedStorageFolderResourceByPath": null
}
}