I am creating an app where every user has a repeating list, that anyone can add to.
It is a task list app that will allow people to share their list with their customers so that customers can automatically add their requests to their todo list.
So, I have created the data type Task
Which has things like, task name, due date, task details etc.
and then in Users I have created a new field that is “Stack” which is a list of tasks
How do I indicate which tasks belong to which user within the database?
Also, how do I call this information to display in the repeating group?
-Dave