Hajto
April 3, 2025, 11:47am
1
How one would add or remove elements from an array in an atomic action. Tried using fragments but kept getting errors.
Map.put(
changes,
:state_history,
expr(fragment("array_prepend(?, coalesce(?, '{}'))", ^new_state, ^ref(:state_history)))
)
IO.inspect(changes)
{:atomic, changes, checks}
** (KeyError) key :atomic_validations not found in: {:not_atomic,
“Cannot atomically update AThing.state_history: Cannot cast a non-literal list atomically”}
I am going a bit blindly, any input appreciated.
I guess you have tried this?
change atomic_update(:score, fragment("array_prepend(?, coalesce(?, '{}'))", ^new_state, ^ref(:state_history)))
https://hexdocs.pm/ash/update-actions.html#fully-atomic-updates
Hajto
April 4, 2025, 9:53am
3
Since I am in the context of atomic/3 callback I cannot use this directly.
Traced the thing back, and got this:
Ash.Resource.Change.Atomic.atomic(
changeset,
[
attribute: :history,
expr:
expr(
fragment("array_prepend(?, coalesce(?, '{}'))", ^new_state, ^ref(:state_history))
)
],
context
)
Yet to test it.
Hajto:
Map.put(
changes,
:state_history,
expr(fragment("array_prepend(?, coalesce(?, '{}'))", ^new_state, ^ref(:state_history)))
)
IO.inspect(changes)
{:atomic, changes, checks}
Map.put(
changes,
:state_history,
{:atomic, expr(fragment("array_prepend(?, coalesce(?, '{}'))", ^new_state, ^ref(:state_history)))}
)
IO.inspect(changes)
{:atomic, changes, checks}
If you want to override the underlying atomic type casting (which in this case isn’t possible or necessary), you can return it in that {:atomic, ...}
tuple.