Mutation - 통합 스토리지 삭제
사용 할 스토리지의 정보를 삭제한다. (관리자만 설정 가능)
Schema
Input Objects
KEY OBJECT DESC idID 통합 저장소 아이디 (필수) adminPage Boolean 관리자 페이지 여부
Objects
OBJECT DESC UnifiedStorageInformationDto 통합 저장소 정보
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
mutation deleteUnifiedStorageInformation($id: ID!, $adminPage: Boolean) {
deleteUnifiedStorageInformation(id: $id, adminPage: $adminPage) {
id
__typename
}
}
Sample
VARIABLES
{
"id": "b9755456a78011edbc488e04f7e6bc5e",
"adminPage": true
}RESPONSE
{
"data": {
"deleteUnifiedStorageInformation": {
"id": "b9755456a78011edbc488e04f7e6bc5e",
"__typename": "UnifiedStorageInformationDto"
}
}
}