summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/deferred.rb
blob: d0b36aabd5f2cad0d8398f0fd19ddfc429e64bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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