Mutation - 망연계 파일 전송
망연계에 파일을 전송한다.
Schema
Input Objects
KEY OBJECT DESC ids [ID] 아이디 목록 adminPage Boolean 관리자 페이지 여부
Objects
OBJECT DESC InterlockResDto 외부 파일 전송 정보
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
mutation sendFileForInterlock($ids: [String], $adminPage: Boolean) {
sendFileForInterlock(ids: $ids, adminPage: $adminPage) {
code
msg
failure {
name
reason
__typename
}
__typename
}
}
Sample
VARIABLES
{
"ids": [
"c3d880f3ad0911ed9f1456895d2f57f6"
],
"adminPage": false
}RESPONSE
{
"data": {
"sendFileForInterlock": {
"code": "-500",
"msg": "connection timed out: /175.209.37.25:3333; nested exception is io.netty.channel.ConnectTimeoutException: connection timed out: /175.209.37.25:3333",
"failure": [],
"__typename": "InterlockResDto"
}
}
}