explorer2309
I am getting started with ash_admin with the following resources:
- Organisation
- User
- UserOrganisation (many to many link table between the User and Organisation)
I can edit the fields of Organisation and User using ash-admin, but I am unable to manage the many to many relationship.
Is there is a guide or example of this somewhere?
Thanks
Trending in Questions
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
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
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zachdaniel
I don’t believe there is a specific example or guide for that with
ash_admin. When you say that you are unable to manage the many to many relationship, what happens when you try to do so? Is it just not showing in the UI? Can you show me the action in question?EDIT: I think the issue is simpler than I realized, after rereading your question. Answer below:
Actions do not accept related data by default. You have to add an argument (the way to accept non-attribute values into an action), and then you have to use that argument. The most straightforward way to do so, and the way that tells
ash_adminto generate proper inputs, is with the builtinmanage_relationshipchange. For example:explorer2309
Thanks for the quick response and pointing out the update method
After adding that, the update screen looks like this:
And when I click the Load button, it shows the “search” icon. Clicking that icon adds a row having the “remove” icon.
explorer2309
I have created a git repo which shows this problem
zachdaniel
Thank you for the reproduction
Makes my life a million times easier.
Issue fixed in
0.10.1explorer2309
Great. Its working now.

Many thanks!
fbutano
Hi everyone,
Sorry if this is a basic question — I might be misunderstanding how ash_admin is expected to render many_to_many inputs.
Setup:
admin do label_field :name; relationship_select_max_items 10 endadmin do label_field :cip endOn User:
argument :offices, {:array, :map}
change manage_relationship(:offices, type: :append_and_remove)
(I also added the same to create :create)
In ash_admin (User → Create/Edit), the “Offices” field renders as a plain nested input:
Offices
Id [__________]
So it looks like it expects office IDs (UUIDs) rather than a select/typeahead using Office.label_field.
Could you please help me understand if this is expected?
{:array, :uuid}and/orvalue_is_key: :id)?label_fieldonly applies to relationship selects in other contexts?I’m on ash_admin v0.13.x.
Thanks a lot for your time!
zachdaniel
label_fieldoption on a resource, which will make it appear with a dropdown/typeahead in the admin interface for anything with relationships that point to it:fbutano
Hi Zach,
Thanks a lot for the hint! Sorry if I’m still missing something basic here.
I tried setting
label_fieldon the related resource, but in AshAdmin the field still renders as an “IDs-only” nested input (no select/typeahead).Office:
User:
Is this expected currently? Or is there some AshAdmin configuration I’m missing to force a relationship selector for a many_to_many managed via manage_relationship?
zachdaniel
fbutano
Hi Zach! first of all, I wish you Happy new Year!!!
I made a minimal reproduction repo here: GitHub - fbutano/demo_admin · GitHub
It only includes User, Office and Membership (many_to_many through join), plus AshAdmin.
In AshAdmin, in User create/update, the offices field still renders as an “Id [uuid]” nested input instead of a relationship selector (dropdown/typeahead) even with:
Office:
admin do
label_field :name
relationship_select_max_items 10
end
Thanks a lot for your time!