harry
AEAsh Elixir
•Created by harry on 7/1/2023 in #support
relationship required
Hey! Whats the best way to fix this error?
I already tried including
account_id
and account
in the changeset, this is what I have currently
4 replies
AEAsh Elixir
•Created by harry on 6/5/2023 in #support
Querying JSON fields
I have this query,
and I'd like to convert it to an Ash query - any suggestions?
4 replies
AEAsh Elixir
•Created by harry on 5/1/2023 in #support
`many_to_many` error
Happy to share any code needed just not sure what the actual error means! It was working before and I have just started work on tidying up the codebase and this is now an error that has appeared
11 replies
AEAsh Elixir
•Created by harry on 3/4/2023 in #support
How to run something in the background after action?
Hi, I tried using notifiers but it looks like they block. Is there a way to run something in the background that is triggered by an actions e.g. user_created, etc
6 replies
AEAsh Elixir
•Created by harry on 2/20/2023 in #support
Insert into Database without Form
Is there a way to insert into the database a new entry without a form.
i.e. a user does a form action which creates an entity and then I need to update the user to attach them to that new entity.
13 replies
AEAsh Elixir
•Created by harry on 2/16/2023 in #support
Does Ash Auth support Google/Apple OAuth?
I think the title sums it up 😄
6 replies
AEAsh Elixir
•Created by harry on 1/28/2023 in #support
Autogenerated unique short IDs
What is the best way in Ash to generate short IDs e.g. invite codes that are unique and will keep generating till it gets a unique one? Actions?
18 replies
AEAsh Elixir
•Created by harry on 1/28/2023 in #support
Cache & Query Time
Does AshPostgres cache queries?
5 replies
AEAsh Elixir
•Created by harry on 1/22/2023 in #support
Multi-node deployments
How does ash work when deployed with multiple nodes e.g. across AWS regions are the notifiers only called on the node where it occurs or are they distributed?
3 replies
AEAsh Elixir
•Created by harry on 1/21/2023 in #support
Sending emails with Ash
Does Ash have a wrapper for Sending emails or a recommended way to send transactional emails e.g. Confirm Account?
24 replies
AEAsh Elixir
•Created by harry on 1/21/2023 in #support
Cannot use `^variable` outside of match clauses
This error disappears when you add
import Ash.Query
but then Elixir complains that it is an unneeded import, is there a better way around this?6 replies
AEAsh Elixir
•Created by harry on 1/21/2023 in #support
How to manage `belongs_to` relations
I have this action in my resource
but when I create a new token, the user and user_id are nil
11 replies
AEAsh Elixir
•Created by harry on 1/21/2023 in #support
`AshPhoenix.Form` not applying changes
I am using forms as below:
And the action
:new_account
is as follows:
I would expect on submit that my change is hashing the secret however it isn't and the change is running when the form is created. The change is also below
Any ideas?27 replies