tellesleandro
Ecto allows to compose a query, like this:
def for_patio(query \\ __MODULE__, %Patio{} = patio) do
query
|> join(:inner, [pe], _ in assoc(pe, :patios), as: :patios)
|> where([patios: p], p.id == ^patio.id)
end
def for_parceiro(query \\ __MODULE__, %Parceiro{} = parceiro, voucher) do
query
|> join(:inner, [pe], ape in assoc(pe, :parceiros_precos_estadias),
as: :parceiros_precos_estadias
)
|> where(
[parceiros_precos_estadias: ape],
ape.parceiro_id == ^parceiro.id and
ape.voucher == ^voucher
)
end
I can query the resource in different ways:
- Resource.for_patio(patio) |> Repo.all
- Resource.for_parceiro(parceiro, voucher) |> Repo.all
- Resource.for_patio(patio) |> Resource.for_parceiro(parceiro, voucher) |> Repo.all
How do I do that using Ash?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
You’d use calculations for this:
And then you can query like
You cold then call a code interface and provide this query
Or use the underlying api for it
zachdaniel
You can also just let the caller filter
this is safe to let them do, because all logic ultimately goes through a read action, and is always run through your policies for access rules.
tellesleandro
Thanks @zachdaniel. With all this explanation I can move on. I think I get stucked 'cause I feel I have to put all queries inside actions. As far as I can see, it’s not true. Many examples you give show queries that don’t rely on actions, right? In this case, should I create a regular module and put there the queries inside regular functions?
zachdaniel
Honestly it just depends on how you’re using it. For instance, if you’ve got a live view somewhere, you can do this:
But you can also do
If you are considering making a module somewhere with functions like:
Then at that point I would suggest making it an action, i.e
If you need caller-level composition, then calculations are a good choice.
I know it would be nice if there was “one right answer” but in these case it often comes down to what kind of interface you would need. The general rule of thumb though is: when in doubt, put stuff in an action that does specifically what you need.
tellesleandro
Great. I’ll follow these advices. Thanks.
zachdaniel
No problem
I appreciate your questions, and I while we definitely want to improve the documentation, having these kinds of questions here in the forum will help other people when they have similar questions. Documentation improvements are a longer term type thing, but this will help people in the short term 
tellesleandro
Sure. I hope more devs jump into Ash’s world and take advantage of it. These newbie’ questions may help them too.
yasoob
Hey @tellesleandro i just wanna say that your questions and the ensuing discussion is very helpful for newbies like me. Thanks for asking these questions!
tellesleandro
Welcome @yasoob. I’m developing real world application for real world customers, not only CRUD examples. So, expect to find more and more newbie questions from me here.