Fix N+1 issue in TO-MANY recursive read operations

Issue #75 resolved
Guillermo Gutiérrez created an issue

Currently recursive read operations fetches relationships for the objects one by one, performing more SELECTs than strictly required. It could group elements and perform a single SELECT-WHERE-IN clause for each property, instead of a SELECT for each element of each property.

Comments (3)

  1. Log in to comment