I'm learning Relay and GraphQL with the Relay starter kit from Facebook. I want to create a simple storage for my data, basically just to keep my GraphQL mutations somewhere. I will deal with a proper ORM and database later.
Could I just dump the data as JSON into a flat file? How would I do this? (No need for concurrency, security and such, I'm still learning all of this.)
Thanks in advance!