It has an "n+1" error currently. word.meanings[0] and word.meanings[0].translations[0] are not eagerly loaded (they do a new query). Make it fetch in groups, because I'll add pagination to the table in the FE.
It has an "n+1" error currently.
word.meanings[0] and word.meanings[0].translations[0] are not eagerly loaded (they do a new query).
Make it fetch in groups, because I'll add pagination to the table in the FE.