Hi all! I’ve been trying to create default seed data to my app: upon creation a company, I need to create a list of tasks that is going to be the same for all companies, copied from a sample data I already have on the database.
Currently, I created this list of tasks with no company assigned to it and, upon creation of the company, I’m copying this list of tasks with no company, then making changes to it, attributing the newly created company.
The thing is: Bubble, for some reason, is not “finding” this first list to copy. Inspecting the debugger, I noticed that, in the workflow to copy a list of things, my Search for Tasks
, type Tasks
where company is empty
is returning empty, completing ignoring the sample data there is indeed there with no company assigned. I’m copying the data to the same data type (Tasks).
Any thoughts of what might be causing it?