Hey, anyone have advice on a workflow for managing...
# prisma-whats-new
p
Hey, anyone have advice on a workflow for managing synchronization between two graphcool projects? Specifically, schema changes and new nodes in a Development version that need to get pushed to Production
a
Schema changes would be covered by the new cli (currently in beta). For new nodes, you could use a SSS, and create/update/delete nodes in the other environment
But relations are a problem using that method (at least, I didn't have time to figure that part out)
p
Got it @agartha. I like the SSS reccomendation
I am also dealing with Files, so that adds a layer of complexity as well
a
For files, I created https://github.com/graphcool-examples/node-remote-file-upload/blob/master/request-streaming.js, where you can put the URL of the File in, and it would stream it to your other project