メインコンテンツまでスキップ

Mutation - 저장소 Resource 폴더 생성 (Path 기반)

저장소 Resource 폴더 생성 (Path 기반)


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
parentFolderPathString부모 폴더 경로 (필수)
folderNameString폴더명 (필수)
unifiedStorageIdString저장소 아이디 (필수)
adminPageBoolean관리자 페이지 여부

Method

POST

{{url}}/graphql

Headers

KEYVALUE
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
}
}