j4mie/paris

hasMany has limitations?!

lokeb opened this issue · 1 comments

Is it possible to make queries that work on hasMany? What I mean is if a->hasMany(b), then can I call
a->find_many()->b()->find_many() ?

The current implementation returns an array, which requires each a to request for many bs. While the returned data is as one would want, the sorting order of the records is problematic, because one would expect all the bs to be ordered as per its table, which will only be possible if the implementation supported the above request, i.e., find_many() returned an object that could be queried further in continuity.

Does the current implementation support such queries in any way?

Chaining like this is not supported.