debian-mirror-gitlab/app/graphql/types/eventable_type.rb
2021-03-11 19:13:27 +05:30

10 lines
236 B
Ruby

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