nallwhy
I’m a bit stuck on how to correctly use aggregates on a resource.
Let’s say I have the following resource:
defmodule MyApp.Invoice do
use Ash.Resource
attributes do
uuid_v7_primary_key :id
attribute :amount, :decimal, allow_nil?: false
attribute :settled, :boolean, default: false, allow_nil?: false
end
end
I want to get the sum of all amounts where `settled is false, so I defined this aggregate:
aggregates do
sum :total_amount, [], :amount do
filter expr(not settled)
end
end
But:
- I’m not sure what the proper way to fetch this aggregate is.
- When I tried using
Ash.aggregate(MyApp.Invoice, {:total_amount, :sum}), it didn’t seem to apply the filter.
I’m not sure if this is a bug or if I’m misunderstanding how it’s supposed to work.
I only shared the relevant code here, but if it helps, I can create a minimal repo to reproduce it.
Thanks in advance!
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
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
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
FlyingNoodle
Aggregates are “per instance of this resource”.
I think something like this:
but I don’t know if thats the best way to do it? I mean you can also put this function in your domain or wherever you like.
nallwhy
MyApp.Invoice |> Ash.Query.filter(expr(not settled)) |> Ash.sum(:amount)works for me.FlyingNoodle
Generally you want to move these things to read actions though and not just freestyle it everywhere.
ken-kost
I think what you want is to put the aggregate into the parent resource and then you can just load the aggregate from the parent resource. Something has those invoices right?
zachdaniel
Ash.aggregate(Resource, {:total_amount, :sum})should be requiring that you specify a field to be summing, i.eAsh.aggregate(Resource, {:total_amount, :sum, field: :amount}).Ash.aggregateis for aggregating information about a query/resource as a whole. i.ewill get you back something like this:
{:ok, %{total_amount: #Decimal<10.0>}}, and is the “sum of of all amounts that are not settled”.The aggregates declared in a resource are different, they are more like a calculation. They are for summary information about related data.
This allows you to say:
which return something like
That
total_invoices_amountis “for the given customer(s), the sum of all related invoices, which are not settled”Hopefully that helps!