Adam King
Adam King
Hi everyone, first of all, I'd like to say that I am amazed at the support this library has received. Unfortunately, with all of the other projects I've got going...
This project is getting to be used by many different projects, and as such, I believe it deserves better documentation and examples. However, I currently don't have the time between...
This library achieves very high success rates, though it takes a very long time to optimize and train. This could be improved if we could figure out a way to...
# Feature Request **What feature are you missing?** Currently it is impossible to define multiple unidirectional relations of the same type within another type. For example: ``` type ContainerType {...
While GraphQL traditionally has a single entry point for all Queries and Mutations, REST usually organizes both across routes. For example, the following GraphQL Schema: ``` type Query { user(id:...

## Problem I have the following `config.mjs`: ``` export default { optionalFeatures: ["crossFileRelations"], baseSchema: BaseSchema, includeFiles: [...globModels(BaseSchema, "prisma/models/**/*.prisma")], extended: { "user.prisma:User": "vendor.prisma:Vendor" }, } ``` I would like to be...