Skip to main content

Mutation - 버전 파일 다운로드

버전별 파일을 다운로드한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
idID파일 아이디
fullPathString파일 경로 (필수)
revisionString파일 버전 (필수)
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
String다운로드용 URL

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

mutation downloadFileByRevision($id: ID, $fullPath: String!, $revision: String!, $adminPage: Boolean) {
downloadFileByRevision(id: $id, fullPath: $fullPath, revision: $revision, adminPage: $adminPage)
}

Sample

VARIABLES

{
"fullPath": "/folder/newSharePoint/복사 이동 테스트/확장자테스트/20220419 미팅 내용 정리.txt",
"revision": "1.0.0",
"adminPage": false
}

RESPONSE

{
"data": {
"downloadFileByRevision": "https://devwebdav.softcamp.co.kr/3CJ55MSE-xLO7Sxt4-qUBKzbcs-XP2cgGEq/shieldrive_version/c6/4471e8c67b7111ed9c753628d70bf4a3/1.0.0/1.0.0-20220419 미팅 내용 정리.txt"
}
}