4
В Rails AR можно выполнять запросы, как это:Как выполнить запрос ActiveRecord current_user.articles, эквивалентный Ecto?
current_user.articles # fetch all articles from current_user
SELECT * from articles where user_id = <user_id>;
Там в эквивалентный способ сделать это с Ecto?