Class: GraphQL::Execution::Lazy Private

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/execution/lazy.rb,
lib/graphql/execution/lazy/resolve.rb,
lib/graphql/execution/lazy/lazy_method_map.rb
more...

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

This wraps a value which is available, but not yet calculated, like a promise or future.

Calling #value will trigger calculation & return the “lazy” value.

This is an itty-bitty promise-like object, with key differences: - It has only two states, not-resolved and resolved - It has no error-catching functionality

Defined Under Namespace

Modules: Resolve Classes: LazyMethodMap

Constant Summary collapse

NullResult =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

This can be used for fields which had no lazy results

Lazy.new(){}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path: nil, field: nil, &get_value_func) ⇒ Lazy

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Create a GraphQL::Execution::Lazy which will get its inner value by calling the block

Parameters:

  • path (Array<String, Integer>) (defaults to: nil)
  • field (GraphQL::Schema::Field) (defaults to: nil)
  • get_value_func (Proc)

    a block to get the inner value (later)

[View source]

29
30
31
32
33
34
# File 'lib/graphql/execution/lazy.rb', line 29

def initialize(path: nil, field: nil, &get_value_func)
  @get_value_func = get_value_func
  @resolved = false
  @path = path
  @field = field
end

Instance Attribute Details

#fieldObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.


23
24
25
# File 'lib/graphql/execution/lazy.rb', line 23

def field
  @field
end

#pathObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.


23
24
25
# File 'lib/graphql/execution/lazy.rb', line 23

def path
  @path
end

Class Method Details

.all(lazies) ⇒ Lazy

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns A lazy which will sync all of lazies.

Parameters:

  • lazies (Array<Object>)

    Maybe-lazy objects

Returns:

  • (Lazy)

    A lazy which will sync all of lazies

[View source]

67
68
69
70
71
# File 'lib/graphql/execution/lazy.rb', line 67

def self.all(lazies)
  self.new {
    lazies.map { |l| l.is_a?(Lazy) ? l.value : l }
  }
end

.resolve(val) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Traverse val, lazily resolving any values along the way

Parameters:

  • val (Object)

    A data structure containing mixed plain values and Lazy instances

Returns:

  • void

[View source]

19
20
21
# File 'lib/graphql/execution/lazy.rb', line 19

def self.resolve(val)
  Resolve.resolve(val)
end

Instance Method Details

#thenLazy

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns A GraphQL::Execution::Lazy whose value depends on another GraphQL::Execution::Lazy, plus any transformations in block.

Returns:

[View source]

59
60
61
62
63
# File 'lib/graphql/execution/lazy.rb', line 59

def then
  self.class.new {
    yield(value)
  }
end

#valueObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns The wrapped value, calling the lazy block if necessary.

Returns:

  • (Object)

    The wrapped value, calling the lazy block if necessary

[View source]

37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/graphql/execution/lazy.rb', line 37

def value
  if !@resolved
    @resolved = true
    @value = begin
      v = @get_value_func.call
      if v.is_a?(Lazy)
        v = v.value
      end
      v
    rescue GraphQL::ExecutionError => err
      err
    end
  end

  if @value.is_a?(StandardError)
    raise @value
  else
    @value
  end
end