online_notifications.rb 367 B

1234567891011121314
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. module Gql::Queries
  3. class OnlineNotifications < BaseQuery
  4. description 'Online notifications for a given user'
  5. type Gql::Types::OnlineNotificationType.connection_type, null: false
  6. def resolve(...)
  7. OnlineNotification.where(user: context.current_user)
  8. end
  9. end
  10. end