Tommy D. Rossi

Results 207 comments of Tommy D. Rossi

Yeah, i think the current approach is fine in my opinion You can open a PR if you want with a new playground The current playground works this way -...

You can use the current playground as an example https://github.com/remorses/dokz/blob/eb08f69d60398e3746ded4ff3b9ae5f9cefe66e7/dokz/src/components/Playground.tsx#L31

How would you configure this? I don't want to add to much configuration, it becomes difficult to keep it in sync with the files and folders structure (which is the...

Thank you for opening an issue, currently I am reimplementing the engine in golang, I will add your query as a test case to make sure it works

I am currently everything everything in Golang as the current code is impossible to maintain, I can make the functions that get the objects from database very general so it...

Wait until I merge the Golang branch, then you can fork it and replace the mongodb functions

Currently no, I created mongoke as a way to query your database from the frontend client, implementing mutations this way is an anti pattern, you would add a lot of...

I am now thinking that mutations would be useful in server side to have a typed client like prisma does, will implement them in the near future Let me know...

[Graphql Zeus](https://github.com/graphql-editor/graphql-zeus) uses a generic type `MapType` to select some fields `DST` from an interface `SRC` ``` type MapType = ... ``` View the code [here](https://github.com/graphql-editor/graphql-zeus/blob/79520373de44da01798ea23e6a20c098ce1f745d/examples/typescript-node-custom-schema/src/graphql-zeus.ts#L183) We can simply copy...