A prototype of a solution building a full crud (graphql) out of a provided schema.
- have postgres database running (dockerized in the future)
- fill env.json with your database connection parameters
- npm install
- npm start
The index.ts has your "entity declaration". With that you can declare what kind of data you're working with. TypeScript will guide you through the implementation.
As the solution is currently under development, the program is set to drop and recreate the used tables on every restart. You can comment that out in startup.ts
- Relations
- Migrations
- Better datatypes
- Better "entity declaration", possibly with just pure graphql syntax
- Much more...