summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/lazy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/graphql/lazy.rb')
-rw-r--r--lib/gitlab/graphql/lazy.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/gitlab/graphql/lazy.rb b/lib/gitlab/graphql/lazy.rb
new file mode 100644
index 00000000000..a7f7610a041
--- /dev/null
+++ b/lib/gitlab/graphql/lazy.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Graphql
+ class Lazy
+ # Force evaluation of a (possibly) lazy value
+ def self.force(value)
+ case value
+ when ::BatchLoader::GraphQL
+ value.sync
+ when ::Concurrent::Promise
+ value.execute.value
+ else
+ value
+ end
+ end
+ end
+ end
+end