toberoni

toberoni

Ash.Query.after_action/2 with relationships

I’m trying to understand how Ash.Query.after_action/2 works and when relationships get loaded during the action lifecycle.

The problem: In my read action I query some stories and a couple of relationships. I want to use a preparation to format these stories + the related data for the frontend. However, no relationships are loaded in the Ash.Query.after_action/2 function even when I load them before.

Here is a minimal example:

# story.ex resource
read :list_public do

  prepare build(
            load: [:tags]
          )

  prepare Tinytale.Ash.Stories.Preparations.Frontend
  pagination(offset?: true)
end 

And my preparation:

defmodule App.Stories.Preparations.Frontend do
  use Ash.Resource.Preparation
 
  def prepare(query, _opts, _context) do
    query
    |> Ash.Query.after_action(fn _query, stories ->
      dbg(stories)
      # do something with the stories & relationships
      end)
  end
end

When I inspect the stories I can see that the :tags relationship is not available. When are relationships actually loaded during the action lifecycle?

I’ve checked the docs and they mention that relationships get asynchronously loaded. When does Ash.Query.after_action/2 hook in exactly and is there an option to force loading related data?

First 3 of 3 Posts! Switch mode

zachdaniel

zachdaniel

Creator of Ash

Loaded information is filled in after the hooks are run. Can you instead make a calculation (not an expression calculation) that returns instances of the target resource?

calculate :things, {:array, Thing}, ListThings

defmodule ListThings do
  use Ash.Resource.Calculation

  def load(_, _, _) do
    [:things]
  end

  def calculate(records, _, _) do
     ...
  end
end
toberoni

toberoni

Thanks for the clarification. Your approach works, but now I have another question. :grin:

Does the load/3 in this Calculation result in another database roundtrip or does Ash pick up relationships that are already loaded through the action’s preparations?

I’m asking because in my example I have omitted a custom preparation that loads the first story.scenes.illustrations to use as the ‘book_cover’ (the initial goal with Ash.Query.after_action/2 was to get an object with selected Story attributes + relationships for the frontend)

I’d rather avoid loading [scenes: :illustrations] and other relationships again. In that case I think piping the records through a plain Elixir function after the read action would be the better way.

zachdaniel

zachdaniel

Creator of Ash

The calculation engine combines loads and creates a minimal load statement to satisfy both the requested loads and requirements for calculations. If you have authorization policies on the resources in question and are running the query with authorization, though, it won’t combine the loads in this specific case, because the user loads are run with authorization and the calc dependency loads are not (intentionally, so you can define calculated properties however you want. I will add an option to authorize calc dependency loads just like regular loads in the future).

Where Next?

Trending in Questions Top

jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
saveman71
Hello ! We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement