|
|
|
|
|
by nawgz
2142 days ago
|
|
Have you looked at Hasura? For some of my latest dev, I've just stopped worrying about writing data plumbing. I have a tool that I can use to update the schema from any arbitrary state to any arbitrary state so long as there are no column modifications, and then Hasura is able to query my entire schema via GraphQL. You also get row, column, & table-level permissions, an easy auth hook, and the promise of schema stitching (which I must admit I haven't used yet, so I don't know if it's easy or performant). I can't really speak to performance, but I think the Hasura guys did their best to use Postgres' internals wherever possible. Try it out! Also, a similar tool is "Xgenecloud", but I didn't like it as much and have only invested time into Hasura. |
|