2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module Gitlab
|
|
|
|
module Graphql
|
|
|
|
module Present
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
prepended do
|
|
|
|
def self.present_using(kls)
|
|
|
|
@presenter_class = kls
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.presenter_class
|
|
|
|
@presenter_class
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.use(schema_definition)
|
|
|
|
schema_definition.instrument(:field, Instrumentation.new)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|