QueryNotificationInput
Input type for querying notifications for a specific user.
input QueryNotificationInput {
first: Int
isRead: Boolean
skip: Int
}
Fields
QueryNotificationInput.first ● Int scalar
Number of notifications to return (default: 20, max: 100).
QueryNotificationInput.isRead ● Boolean scalar
Filter by read status (true for read, false for unread).
QueryNotificationInput.skip ● Int scalar
Number of notifications to skip for pagination.