toberoni

toberoni

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?

Showing Posts 1 to 3

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 OP

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).

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
RemyXRenard
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
velrest
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
samoloth
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews