11 lines
202 B
GraphQL
11 lines
202 B
GraphQL
query MyNotificationHistory($channel: MessengerType!, $limit: Int) {
|
|
myNotificationHistory(channel: $channel, limit: $limit) {
|
|
id
|
|
channel
|
|
title
|
|
message
|
|
createdAt
|
|
orderId
|
|
}
|
|
}
|