In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there an option to make it ignore the extra_key instead?
create :create do
accept [:name, :age]
..
ResourceName1
|> Ash.Changeset.for_create(:create, %{name: "John", age: 20, extra_key: 1234})
|> Ash.create!()