Giter Site home page Giter Site logo

Comments (2)

joeconwaystk avatar joeconwaystk commented on May 2, 2024

at one point, was implemented but it was a bit confusing and the rules were a bit unclear. so we can take another look at this soon.

note that it'd be nice to have auto-generated async accessors for sub-objects instead of having to build the query ourselves

from aqueduct.

joeconwaystk avatar joeconwaystk commented on May 2, 2024

Just to start the convo, something like this:

var categoryTemplate = new Category();
var roomTemplate = new Room()..categories = [categoryTemplate];
var userTemplate = new User()..id = 1..rooms = [roomTemplate];

var users = await adapt.populateModelGraph(userTemplate);

Where users contains all users that have id = 1 (which we know to just be one for this particular value), and its properties will be populated, along with all of its rooms, and all of the rooms will have all of their categories.

Every property set on these objects would become filters (just like predicateObjects). An empty object in a relationship (or list of objects) indicates that you want them fetched.

Now, I really don't like this whole using model objects as templates for generating predicates, but its an OK temporary solution. Where it breaks down is when you need anything other than equality (<, >, like, etc.). What I'd really want is an automatically generated class for each model class. The auto generated class would have the same properties as the model class, except the properties would be a different type. Maybe some sort of PredicateMatcher. Its values could follow the Matcher syntax like in tests:

var userTemplate = new PredicateMatcher<User>();
userTemplate.name = beginsWith("B");
userTemplate.rooms.items = hasLength(10); // rooms is lazily allocated

var query = userTemplate.query;
var modelGraph = await query.fetch(adapter);

from aqueduct.

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.