webapp/src/graphql/query/notifications.ts
Ilya Y 1e0e31cf09
Feature/infinite scroll (#290)
notifications infinity scroll
2023-11-01 18:13:54 +03:00

21 lines
365 B
TypeScript

import { gql } from '@urql/core'
export default gql`
query LoadNotificationsQuery($params: NotificationsQueryParams!) {
loadNotifications(params: $params) {
notifications {
id
shout
reaction
type
createdAt
seen
data
occurrences
}
totalCount
totalUnreadCount
}
}
`