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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
234 B
Ruby
Raw Normal View History

# 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