So, I’ve got this datamodel for an app I’m working...
# orm-help
c
So, I’ve got this datamodel for an app I’m working on. I’ve got the relationship between Posts and Photos set up, but when I go to create a mutation for this, I’m a bit stuck. Basically, my idea was to create each of the photos, and then connect them the post after it was done. But, because the post doesn’t exist yet, there’s not way to connect the post id to the photo, causing an error. Anyone have an idea as to how I can implement this?
🙌 1