Hi there! I’m trying to associate things in my database with their creator, so I can display a list of created things on the user’s account page. To keep this solution beneficial for future readers, I’ll use a generic example of blog posts.
When a user creates a new blog post, I have a workflow that creates the “Post” data type in my database. The next step is it creates a “Post-Categories” data type that contains the category information for the post.
I was thinking the best way to store “Created-Posts” would be in a separate data type, linked to the main User data type.
However, in my workflow, when I try to add another step, modifying a thing, and I select the Created-Posts data type, I get an error message like this:
How do you set this up? What am I doing wrong?
Thanks!