Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
graphql / lib / generators / graphql / templates / loader.erb
Size: Mime:
class Loaders::<%= class_name %> < GraphQL::Batch::Loader
  # Define `initialize` to store grouping arguments, eg
  #
  #     Loaders::<%= class_name %>.for(group).load(value)
  #
  # def initialize()
  # end

  # `keys` contains each key from `.load(key)`.
  # Find the corresponding values, then
  # call `fulfill(key, value)` or `fulfill(key, nil)`
  # for each key.
  def perform(keys)
  end
end