class GraphQL::Execution::Lazy::LazyMethodMap

def get(value)

Returns:
  • (Symbol, nil) - The `lazy_value_method` for this object, or nil

Parameters:
  • value (Object) -- an object which may have a `lazy_value_method` registered for its class or superclasses
def get(value)
  @storage.compute_if_absent(value.class) { find_superclass_method(value.class) }
end