Do I need to make changes to current user? To explain my data - I have a User (data type) that will go on many Trips (Trips is also a data type). Each user has a list of Trips as a field in the User data type.
In each Trip they will spend money so create and Expense (which is also a data type). Data Type Trips also has a list of Expenses as a field so each Trip has a list of Expenses.
So my question is when a user saves a new Trip do I need to make changes to current user in the workflow to add the trip to the current user as well or is the fact that the list of Trips is in the User data type enough?
Also when user saves a new Expense do I need to make changes to the Trip ? Or as in the example above is the fact that the trip has a list of Expenses enough
Just trying to work out if this extra step in the workflow is necessary and if not in what circumstances would it be necessary? Thanks in advance