Theodor Diaconu

Results 135 issues of 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...

enhancement
package:validator-bundle
package:x

Solution was tsconfig.json typeRoots, but just to ensure.

bug
package:apollo-security-bundle
package:x

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...

enhancement
impact:low

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()...

documentation
enhancement
package:x-ui

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...

enhancement
package:x
package:x-ui
impact:low

An entity should be able to do ```ts const resolvers = { User: { firstName: [fn1, fn2] } } ```

enhancement
package:graphql-bundle
impact:low

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 {...