2023-10-14 11:39:24 +00:00
|
|
|
import { gql } from '@urql/core'
|
|
|
|
|
|
|
|
export default gql`
|
2023-11-01 15:13:54 +00:00
|
|
|
query LoadNotificationsQuery($params: NotificationsQueryParams!) {
|
|
|
|
loadNotifications(params: $params) {
|
2023-10-14 11:39:24 +00:00
|
|
|
notifications {
|
|
|
|
id
|
|
|
|
shout
|
|
|
|
reaction
|
|
|
|
type
|
|
|
|
createdAt
|
|
|
|
seen
|
|
|
|
data
|
|
|
|
occurrences
|
|
|
|
}
|
|
|
|
totalCount
|
|
|
|
totalUnreadCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|