summaryrefslogtreecommitdiff
path: root/app/graphql/types/eventable_type.rb
blob: eba2154e7fa9244324730f857da6aba4493ffe2c (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: 'A list of events associated with the object.'
  end
end