Mutation - 버전 파일 다운로드
버전별 파일을 다운로드한다.
Schema
Input Objects
KEY OBJECT DESC id ID 파일 아이디 fullPathString 파일 경로 (필수) revisionString 파일 버전 (필수) adminPage Boolean 관리자 페이지 여부
Objects
OBJECT DESC String 다운로드용 URL
Method
POST
{{url}}/graphql
Headers
KEY VALUE 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"
}
}