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

Mutation - 추출 재시도

썸네일 생성이 실패된 파일에 대해 추출 재시도한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
idID파일 아이디
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
FsEntityDto폴더 / 파일 정보

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

mutation reExtractionFile($id: ID!, $adminPage: Boolean) {
reExtractionFile(id: $id, adminPage: $adminPage) {
id
indexDate
deleteKey
storageId
interlockId
realPath
displayPath
storageEntityId
type
realName
displayName
description
tag
size
createdDate
createdUserId
createdUserName
modifiedDate
modifiedUserId
modifiedUserName
status
statusReqDate
statusResDate
folderInfo {
type
shareFolderInfo {
bgImage
labels {
id
name
color
__typename
}
members {
id
name
role
createdDate
__typename
}
teamId
type
__typename
}
shareChannelInfo {
channelId
__typename
}
shareListInfo {
pos
__typename
}
shareCardInfo {
labelId
pos
__typename
}
__typename
}
acl {
id
targetType
targetId
authFlag
order
refernceId
__typename
}
__typename
}
}

Sample

VARIABLES

{
"id": "a43027c15e7411ed8a4e8ab02e3efd82",
"adminPage": false
}

RESPONSE

{
"data": {
"reExtractionFile": {
"id": "a43027c15e7411ed8a4e8ab02e3efd82",
"indexDate": 1677821173407,
"deleteKey": "",
"storageId": "NAS",
"realPath": "/shieldrive_folder/10/a352e7105e7411ed9e4bf97c62b93440",
"displayPath": "/personal/master@socam.info/87f92e670bf911ed9bafea52a378a89a",
"storageEntityId": null,
"type": 1,
"realName": "a352e7105e7411ed9e4bf97c62b93440.doc",
"displayName": "Doc 확장자.doc",
"description": "",
"tag": "",
"size": 28732,
"createdDate": 1667809058219,
"createdUserId": "8239b9b2ed1511ecbf494657c4f20301",
"createdUserName": "최고관리자",
"modifiedDate": 1667809058219,
"modifiedUserId": "8239b9b2ed1511ecbf494657c4f20301",
"modifiedUserName": "최고관리자",
"status": 1,
"statusReqDate": 1667809058219,
"statusResDate": 1667809061954,
"fileInfo": {
"type": "word",
"hash": "d93f76796641ebbb0b01af5485b043c6a4a2a00c4dd6390478cec5ec7d9c968c",
"contents": "",
"revision": "1.0.0",
"revisionWeight": 100000000,
"encrypted": true,
"thumbs": [],
"extractionStatus": 0,
"extractionMsg": "",
"extractionReqDate": 1677821173407,
"extractionResDate": 0,
"__typename": "FsEntityFileInfoDto"
},
"acl": {
"id": "a475bc425e7411ed8a4e8ab02e3efd82",
"targetType": 0,
"targetId": "8239b9b2ed1511ecbf494657c4f20301",
"authFlag": 15,
"order": 0,
"refernceId": "da0ab4ca1eb211ed8b30463c698c265d",
"__typename": "FsEntityAclDto"
},
"__typename": "FsEntityDto"
}
}
}