DEV Community

Discussion on: Wanna play with GraphQL on an existing database

 
danroc profile image
Daniel da Rocha

It just felt it was holding me back on fast iterations, as my DB was relatively simple. My plan was to have a base version with all the tables I needed, then create a base migration and go from there. But I never did the "first migration" in the end. I know this will bite me in the ass later, so it is on my TODO list.

GraphQL is actually quite simple once you get the grips of it. I am also planning on trying to write my own schema in my next project, just for practice. You should give it a try, then maybe use SQLite for your Electron project?

Thread Thread
 
joeschr profile image
JoeSchr

You should give it a try, then maybe use SQLite for your Electron project?

Writing my own schema wouldn't be the problem, but I hope that graphile writes all the CRUD and other boilerplate resolvers for me which I hate to do over and over again