debian-mirror-gitlab/app/graphql/types/subscription_type.rb
2021-06-08 01:23:25 +05:30

11 lines
313 B
Ruby

# 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