Gavin Ray
Gavin Ray
I have this which I use to find whether a Field of an Object node is a scalar or not: ```ts export const isScalar = (doc: DocumentApi, field: FieldDefinitionApi) =>...
First of all, I cannot thank you enough for this library. I have built a very large tool for codegen and working with type-definition schemas around it, and it is...
If you try to `t.objectType` or any of it's variants, and then `document.createObjectType` or `document.upsertObjectType()` when the `type` value is a a string (or basically anything but the hack using...
**I have a working rough proof-of-concept here:** https://github.com/GavinRay97/vue/commit/524d4c441852e6ad2e174d53168221b1e3eb89fb Allow binding property keys to values of the same name, the way that ES6 shorthand for object syntax works. ```js const a...
Fixes issue where some GraphQL types are generated as `Any` but the `Any` import is not present in `from typing import ...`. Also fixes unrelated hidden bug where the codegen...
From conversation with someone trying to integrate the app, realized that the Next.js API doesn't have CORS enabled. To fix this, `/pages/api/graphql.ts` needs to updated with: ```ts // Make sure...
I couldn't get this extension detecting my custom built LLVM 13 `clang-cl.exe`. It detected everything else, including the Visual Studio `clang-cl` you are forced to install if you want LLVM/`clang`...
To cement my understanding of the book, I'm working through it a second time, this time changing the implementation from using Arrow vectors + types (columnar) to row-based data (`Map`)...
https://github.com/andygrove/how-query-engines-work/blob/9c27d475b62e3a4eccec4236e2fe60eb3f13e757/jvm/query-planner/src/main/kotlin/QueryPlanner.kt#L62 
First of all, thank you for making this. Stellar plugin for a really great lightweight editor. One thing I really wish I could do is open the selected file and...