PaulBickford

PaulBickford

How to create nested form for polymorphic relationships?

How would I create a nested form for example given in the Ash docs Define Polymorphic Relationships — ash v3.29.3 ?

I can create each resource manually, so I tried to create a nested form by following Nested Forms — ash_phoenix v2.3.23 . As suggested in Ash 3.4.48 breaks the example in "Define Polymorphic Relationships" document - #4 by iyjim , I added a change manage_relationship to the BankAccount’s create action.

create :create do
  accept [:account_number, :type]

  argument :implementation, AccountImplementation do
    allow_nil? false
    public? true
  end

  change manage_relationship(:implementation, type: :create)
end

My nested form does not display and I receive an diagnostic error saying that :implementation is not a relationship.

Diagnostics:
** (Spark.Error.DslError) [...]
actions -> create -> create -> change -> manage_relationship -> implementation defined in ...
  No such relationship implementation exists.

How can I create a nested form in AshPhoenix which will create a BankAccount and a SavingsAccount (or CheckingAccount) upon submit?

Where Next?

Popular in Questions Top

electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

New
chrismccord
Phoenix 1.4.0 released Phoenix 1.4 is out! This release ships with exciting new features, most notably with HTTP2 support, improved deve...
688 31586 112
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 40165 209
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New

We're in Beta

About us Mission Statement