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

eventable_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a02079b7abe72dde5aab44f70d1aaa88977eb1e (plain)
1
2
3
4
5
6
7
8
9
# 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