Hey everyone,
I made a Facebook like social network for internal use only.
I am trying to add a feature to allow users to comment on individual pictures within a post.
Currently the Pictures are uploaded to the post as a list of images, I can’t figure out a way to attach a comment to a specific image in the list. So I thought a better way would be to add a new data type that has fields for the image, the comment, and the post that it’s a part of. Then I can use a backend workflow to create a new thing for each image.
I setup an API workflow that triggers when a post is submitted that creates a thing for each item, but my issue is the backend workflow is adding the same image to each thing.
See below:
The backend Workflow
The frontend Workflow
First I create the post:
Then I run the API workflow:
I tried setting Pics to the first item but that adds the same image to each thing
Any ideas would be appreciated.
Thanks!