Jayden Seric

Results 226 comments of Jayden Seric

> Don't look at the tag on GitHub. Why would the tag be incorrect? Very confusing. > Are you sure v2.2.2 has breaking changes because you checked in code or...

I've been wrestling with this problem with JSDoc for years, both from the side as a user trying to document things, and as the creator of [`jsdoc-md`](https://github.com/jaydenseric/jsdoc-md) which generates markdown...

Would really love to see this! In the mean time, for those not aware, you can test mutations or queries with `Upload` scalars without a full blown application using https://insomnia.rest....

While it is a nice UX to have the file picker appear for `Upload` scalar arguments, perhaps it's desirable to allow any argument to be a `window.File` (or `window.FileList`?) instance...

Maybe there could be a panel tab next to "Query variables" and "HTTP headers" called "Uploads" with an appendable list of file inputs. Each file input has a drag and...

Heads-up that [Altair](https://altair.sirmuel.design) has supported file uploads [for a while now](https://sirmuel.design/working-with-file-uploads-using-altair-graphql-d2f86dc8261f), so if you are desperate for a nice GUI give it a go. It might be a source of...

The best way to add type safety to Koa would be to use [TypeScript JSDoc comments](https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html). Add a `typescript` dev dependency: https://github.com/jaydenseric/graphql-api-koa/blob/b8aac9a2927ec9aeb0954b93e170e4604aa676f5/package.json#L59 ``` "typescript": "^4.7.4" ``` Because `koa` types probably...

Are you able to explain in more detail what "schema proxying" is, and how it works, for this change to be necessary? It's a little hard to make an informed...

@yaacovCR The problem is that what you are trying to do is not really serialization. The custom scalar `serialize` method is supposed to serialize the scalar to a JSON value,...

@yaacovCR thanks for [your comment there](https://github.com/graphql/graphql-js/pull/3049#discussion_r627067766), glad to have you on the case :) I had a look to see if there was anything actionable on this issue to include...