Theodor Diaconu
Theodor Diaconu
``` Schema.toGraphQL(yupObject or SchemaClass). ``` Make this available for entities and objects. Questions: - What if you want to add directives or comments or other info like "@deprecated"? Doesn't it...
Solution was tsconfig.json typeRoots, but just to ensure.
field: "document"
Allow configuration of where to put the microservices. This should be at generateProject() function level: ```ts generateProject({ targets: { api: "microservices/api", ui: "microservices/admin2" }) ``` If one would have two...
Currently the `Guardian` is well suited for situations where your auth is via password registration, however how do we handle the situation where we've got just one token? ```ts setToken()...
We should have: 1. An easy way to specify and customise errors 2. A documented way of doing it (docs) Should we use `validator-bundle` and have a unified validation strategy...
An entity should be able to do ```ts const resolvers = { User: { firstName: [fn1, fn2] } } ```
This is a very common scenario: ``` // Comment.graphql #import './User' type Comment { title: String! isDone: Boolean! createdAt: Date! user: User } // User.graphql #import './Comment' type User {...