David Glasser
David Glasser
It doesn't improve documentation to display all maps as their own key/value section with no doc comment. Just show them as `map`. Fixes #340.
When I use a `map` in a proto file, I'd like to have that end up showing as a `map` rather than a `repeated FieldNameEntry` and then generate a separate...
There are some file formats for which tabs are always illegal, such as YAML. yaml-mode knows this and always sets indent-tabs-mode to nil. But editorconfig overrides that. Maybe that just...
`graphql-js` lets you run the entire GraphQL operation with a single `graphql` function, or break it apart into different steps (`parse`, `validate`, `execute`) if you want a bit more control...
When reviewing some code in this repo, I noticed some potential bugs (or at least non-ideal error-handling cases) that arose from TypeScript's default behavior of assuming that all index operations...
We recently discovered that supporting `multipart/form-data` POSTs in GraphQL servers makes it very likely that your server will be vulnerable to executing GraphQL mutations in CSRF attacks unless otherwise prevented....
Most decompress plugins allow `input` to be a stream. But `decompress` itself requires it to be a Buffer or a filename, and the filename is converted to a Buffer not...
decompress applies filter after fully reading all files into memory, and documentation is misleading
The documentation of the `filter` option is misleading: > Filter out files before extracting That's not really true. When you use decompress (say, with decompress-tar or decompress-unzip), it *fully decompresses...
Hi! We're starting our work on Apollo Server 4. You can see details in [our full roadmap](https://github.com/apollographql/apollo-server/blob/main/ROADMAP.md) but the overview is that instead of shipping Apollo Server with 9 core-maintained...
The popular Renovate bot creates [commits](https://github.com/apollographql/apollo-server/commit/3554ad2b50e43c29fadd18a06dbed9e66ca86a66.patch) whose author name is `renovate[bot]`. The [edamagit log parser](https://github.com/kahole/edamagit/blob/fbf14266cf0efb71a047c8341de610da6acef6c9/src/commands/loggingCommands.ts#L141) uses a log line parser that explicitly breaks if author names have brackets in them....