11 lines
243 B
GraphQL
11 lines
243 B
GraphQL
query ManagerNotificationHistory($userId: ID!, $channel: MessengerType!, $limit: Int) {
|
|
managerNotificationHistory(userId: $userId, channel: $channel, limit: $limit) {
|
|
id
|
|
channel
|
|
title
|
|
message
|
|
createdAt
|
|
orderId
|
|
}
|
|
}
|