Welcome to mirror list, hosted at ThFree Co, Russian Federation.

subscription_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5356a998f0dc078ca387d8440f99adf890bcbc5b (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  class SubscriptionType < ::Types::BaseObject
    graphql_name 'Subscription'

    field :issuable_assignees_updated, subscription: Subscriptions::IssuableUpdated, null: true,
          description: 'Triggered when the assignees of an issuable are updated.'
  end
end