Skip to content

Instantly share code, notes, and snippets.

@ihorkatkov
Created November 1, 2019 16:05
Show Gist options
  • Save ihorkatkov/c362436d1bba5a2c3707476982697d1c to your computer and use it in GitHub Desktop.
Save ihorkatkov/c362436d1bba5a2c3707476982697d1c to your computer and use it in GitHub Desktop.
from d in Delivery,
join: in Order, on: o.id == d.order_id,
join: h in HistoryItem, on: h.delivery_id == d.id,
where: … # Here my where clause
select: {d, o, h}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment