Query - 알림 조회
구독한 폴더 및 하위 폴더에서 발생한 활동에 대한 알림을 조회한다.
Schema
Input Objects
KEY OBJECT DESC date Long 조회 기준 시간 (millisecond) size Int 조회할 수 adminPage Boolean 관리자 페이지 여부
Objects
OBJECT DESC UserNotificationDto 알림 정보
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
query notifications($date: Long, $size: Int, $adminPage: Boolean) {
notifications(date: $date, size: $size, adminPage: $adminPage) {
id
indexDate
readDate
userId
createdUserId
createdUserName
type
sourceType
sourceKey
sourceValue
targetType
targetKey
targetValue
__typename
}
}