Lorefnon
Lorefnon
Hi, yeah. This looks great. Only caveat I can see is that we are now able to do something like this: ```ts const addrFilterType = g.inputType('AddrFilter', { name: g.string(), id:...
Yes, [this](https://gist.github.com/lorefnon/2a62dc5722e924632e9fe391723df5e5) is a modification of your internal.ts example.
In https://github.com/stepci/garph/pull/93, I updated your branch to allow internal properties only inside object types. This retains `g.internal` but attempting to use it anywhere outside an object type will result in...
Thanks @mishushakov. For example/use-case, we can consider the following query: ```graphql query fetchUserBalance { user(email: "[email protected]") { accountBalance { total } } } ``` To resolve this I lookup users...
Understood. Thanks for elaborating on the nuances involved.
@solarkraft Thanks for your interest in the project. I am however not actively working on this repository. I have found the pwa based approach a bit limiting and the material...
Yes, I think this would be very helpful. I miss the vscode behavior where each window (pane) has its own set of tabs that can be cycled through independently. Wrt....
Hello, thanks for your interest. So even if the generator here is updated to add extension, the underlying library (ts-sql-query) will need to be updated as well because that is...
> I don't believe the underlying library will need to be updated, due to how NodeJS ESM CJS interoperability works (https://nodejs.org/api/esm.html#import-statements). Yes, you are correct. Just verified. In 3.20.0 I...