Code Monkey home page Code Monkey logo

Comments (3)

razertory avatar razertory commented on May 9, 2024 6

Hey, @hidde-jan, @Amnesthesia . CountLoader is just something like other loaders. The most important thing you have to do is to implement perform method . In the user-defined perform method, you have to create some key-value s by input keys using fulfill like this example. Here is the general usage

  • define your loader class and,
  • implement initialize, usually with some arguments you need and,
  • implement perform. In this method you have to get all results by keys, and create your key-value s

This example is far from ActiveRecord or any ORM

class MyLoader < GraphQL::Batch::Loader

  def initialize(arguments)
    @arguments = arguments
  end

  # Usually you don't have to implement your method unless some type casts are different
  def load(key)
    super(key)
  end

  # As it is refered from "You can also batch other stuff, not only load records from a DB"
  # In this example result is an object with attr `key`. Possiblly it is a redis obejct, json or rpc result defined in get_results
  def perform(keys)
    results = get_results(keys)

    results.each { |result| fulfill(result.key, result)} 

    keys.each { |key| fulfill(key, nil) unless fulfilled?(key) }
  end

  private

  def get_results(keys)
    #  your implementation, remember to return an array
  end
end

from graphql-batch.

ronocod avatar ronocod commented on May 9, 2024 1

There's an example of a CountLoader and some other loaders here: https://github.com/jamesbrooks/graphql-batch-loaders

from graphql-batch.

Amnesthesia avatar Amnesthesia commented on May 9, 2024

I've been using the Record loader a lot, but run into a couple of problems that I haven't been able to figure out; I would love some more documentation on things like:

  • Is it possible to maintain order after the promises are fulfilled?
  • Can we batch HABTMs?

from graphql-batch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.