Files
gitlab-foss/lib/gitlab/graphql/deferred.rb
2020-12-14 03:10:06 +00:00

13 lines
291 B
Ruby

# frozen_string_literal: true
# A marker interface that allows use to lazily resolve a wider range of value
module Gitlab
module Graphql
module Deferred
def execute
raise NotImplementedError, 'Deferred classes must provide an execute method'
end
end
end
end