class GraphQL::Compatibility::ExecutionSpecification::SpecificationSchema::CustomCollection

A list object must implement each

Public Class Methods

new(storage) click to toggle source
# File lib/graphql/compatibility/execution_specification/specification_schema.rb, line 42
def initialize(storage)
  @storage = storage
end

Public Instance Methods

each(&block) click to toggle source
# File lib/graphql/compatibility/execution_specification/specification_schema.rb, line 46
def each(&block)
  @storage.each(&block)
end