Elixir
How to solve different problems with Elixir.
Practical answers for building with Elixir and Phoenix.
- How do I query the database from the IEx console? — Start an IEx session connected to your Phoenix app’s Ecto repo and run queries interactively for debugging and exploration. → Read more
- How do I join and group query results in Phoenix? — Write readable Ecto queries using the pipe operator with joins, group_by, having, and aggregates. → Read more