
* WIP * WIP * WIP * packaga-lock.json * WIP * WIP * WIP * WIP * v0.1 * debug code removed --------- Co-authored-by: Igor Lobanov <igor.lobanov@onetwotrip.com>
21 lines
346 B
TypeScript
21 lines
346 B
TypeScript
import { gql } from '@urql/core'
|
|
|
|
export default gql`
|
|
query LoadNotificationsQuery {
|
|
loadNotifications(params: { limit: 10, offset: 0 }) {
|
|
notifications {
|
|
id
|
|
shout
|
|
reaction
|
|
type
|
|
createdAt
|
|
seen
|
|
data
|
|
occurrences
|
|
}
|
|
totalCount
|
|
totalUnreadCount
|
|
}
|
|
}
|
|
`
|