Skip to content
developerworks edited this page Apr 27, 2016 · 1 revision

Examples

Order by

q = from(
  auth in __MODULE__,
  order_by: [asc: auth.date_created],
  where: auth.user_id == ^user_id,
  select: auth,
)

Pagination

q = from(
  auth in __MODULE__,
  order_by: [asc: auth.date_created],
  where: auth.user_id == ^user_id,
  select: auth,
  limit: ^limit,
  offset: ^offset
)
Clone this wiki locally