gitlab-org--gitlab-foss/app/graphql/types/eventable_type.rb

10 lines
234 B
Ruby

# frozen_string_literal: true
module Types
module EventableType
include Types::BaseInterface
field :events, Types::EventType.connection_type, null: true, description: 'List of events associated with the object.'
end
end