Skip to main content

Query - 활동내역 조회

폴더 / 파일과 관련된 활동 내역을 조회한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
filterFsEntityActionFilterInput활동 내역 조회 필터 정보 (필수)
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
FsEntityActionDto활동내역 정보

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

query actions($filter: FsEntityActionFilterInput!, $adminPage: Boolean) {
actions(filter: $filter, adminPage: $adminPage) {
id
indexDate
createdUserId
createdUserName
type
sourceType
sourceKey
sourceValue
targetType
targetKey
targetValue
__typename
}
}

Sample

VARIABLES

{
"filter": {
"displayPaths": [
"/folder/NAS/[한국정보인증] OTP 사용자 매뉴얼_GT4.1_v1.3.pptx"
],
"date": 0,
"size": 2
},
"adminPage": false
}

RESPONSE

{
"data": {
"actions": [
{
"id": "abd53287924811edb0e92a23664ab15a",
"indexDate": 1673507633653,
"createdUserId": "8239b9b2ed1511ecbf494657c4f20301",
"createdUserName": "최고관리자 ",
"type": 9,
"sourceType": 2,
"sourceKey": "/folder/NAS/[한국정보인증] OTP 사용자 매뉴얼_GT4.1_v1.3.pptx",
"sourceValue": "[한국정보인증] OTP 사용자 매뉴얼_GT4.1_v1.3.pptx",
"targetType": 0,
"targetKey": "",
"targetValue": "",
"__typename": "FsEntityActionDto"
},
{
"id": "a18c7c2779ea11ed83d6ee959a4ef5de",
"indexDate": 1670828415800,
"createdUserId": "1342ce6d6aea11ed8a7ebea82d4a5658",
"createdUserName": "user1",
"type": 10,
"sourceType": 2,
"sourceKey": "/folder/NAS/[한국정보인증] OTP 사용자 매뉴얼_GT4.1_v1.3.pptx",
"sourceValue": "[한국정보인증] OTP 사용자 매뉴얼_GT4.1_v1.3.pptx",
"targetType": 0,
"targetKey": "",
"targetValue": "",
"__typename": "FsEntityActionDto"
}
]
}
}