I have 4 objects (data types) that I want to link to each other but I am struggling to execute.
User
Account (each user is linked to ONE account)
Projects (each Account can have multiple Projects, Project can have only ONE Account)
Ads (each Project can have multiple Ads, ads a linked to only one Project)
Here are a few struggles I have:
When a user logs in, he creates an account and is linked to this account. This works.
When the user fills out a form to create a project. I cannot get this project linked to the User’s account
In the same workflow, I am creating a new step where I want to update a field under the Account data type, to add the newly created project under.
This does not work either despite the workflow not showing any error.
In your User datatype, the account is of type “text”.
I believe you store the unique id of the account, which is probably not you want to do.
In your Project objet, the account is of type “account”. So that’s on the first screen you cannot easily set the project related account as the current user’s account.
In your second screenshot, “make changes to account…”, you wouldn’t need to “do a search for” if the user relatated account was of the correct type. You would be abble to edit that account right away.
I believe all the difficulties you have come from this.
Thanks for your help but it seems I cannot sort out my issues. To be honest I’m struggling to understand how the database works. It seems super sophisticated and powerful but probably takes a bit of time to understand how it works. I will try to read more documentation