Files
web-frontend/graphql/operations/notifications/manager-notification-history.graphql
2026-04-03 19:01:22 +07:00

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
}
}