Coder Social home page Coder Social logo

Comments (3)

dylanahsmith avatar dylanahsmith commented on June 10, 2024 1

One of the advantages of AssociationLoader in the examples is that it actually loads the association. Your example seems more like the RecordLoader example, which could more naturally be extended to support of the active record query interface (e.g. joins or named scopes).

The danger of doing too much in the way of filtering in the query is that it could result in multiple queries being performed on the same data in the database, where it could be more appropriate to do the additional filtering client-side to avoid doing an extra query.

We use a separate loader for calculations (i.e. aggregations), which is something we could probably add an example. I don't think it makes sense to combine that with the RecordLoader to make it more complicated by adding the internally divergent code path.

      # Make sure all loaded records are authorized 
      # (either with simple scopes on models or using a library like Pundit).
      scope = target_class.authorized_scope_for(@user)

This makes the example less general and adds an additional dependency for the example that makes it harder to use. I would prefer to leave this sort of customization to the library user.

Do you load more complex associations using something similar or do you implement a loader per every association?

Custom loaders have the advantage of adding a layer of abstraction, which can be useful to decouple the code using the loader from the underlying implementation when it is expected to change. When an abstraction isn't needed, then re-using more general associations makes sense.

from graphql-batch.

martinliptak avatar martinliptak commented on June 10, 2024

@dylanahsmith Thank you for your extensive answer!

from graphql-batch.

fedefa avatar fedefa commented on June 10, 2024

Hi @dylanahsmith @martinliptak ! Thank you for your explanation. Can you explain me why loading the association using the preloader has any advantage?

One of the advantages of AssociationLoader in the examples is that it actually loads the association

From my point of view, the only important thing is to calculate the value and populate the <key,value> store. Also, using the preloader, record.association_name will be called only from the perform action.

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.