Mutation - 알림 개별 확인
알림 1건을 확인한다.
Schema
Input Objects
KEY OBJECT DESC idID 알림 아이디 (필수) adminPage Boolean 관리자 페이지 여부
Objects
OBJECT DESC UserNotificationDto 알림 정보
Method
POST
{{url}}/graphql
Headers
KEY VALUE AuthorizationSecurity365 JWT 토큰
Body
QUERY
mutation readNotification($id: ID!, $adminPage: Boolean) {
readNotification(id: $id, adminPage: $adminPage) {
id
indexDate
readDate
userId
createdUserId
createdUserName
type
sourceType
sourceKey
sourceValue
targetType
targetKey
targetValue
__typename
}
}