|
|
|
|
|
by SwellJoe
3082 days ago
|
|
This isn't an ORM, is it? I poked at it in an earlier (PostGraphQL) version and it feels like a query translator from GraphQL to SQL and back, to me, with no munging onto or into objects, at all. ORMs are for people who love their programming language but don't want to touch the database. This is kinda the opposite of an ORM. Nearly everything is in the database and this is a wrapper that allows you to build your app in your database. |
|
These GraphQL tools, however, act a lot like a database-first ORM, where you provide a database and the tool generates code in a different paradigm (OO for ORMs, Graph QL here). It is indeed the opposite direction, but ORMs can work that way too.