Mark Larah

Results 48 issues of Mark Larah

Hi! When creating a custom Apollo Server Plugin, in the `willSendResponse` method, we might want to copy the response headers from subgraphs back down the the user's request - particularly...

Update: RFC PR is here! https://github.com/graphql/graphql-spec/pull/746 --- For example, given this schema: ```graphql type Business { reviews: [Reviews] name: String } type Review { body: String ... } ``` -...

Addresses https://github.com/airbnb/hypernova/issues/111 Motivation: To be able to pass things from inside `getComponent` to the rest of the express application (for custom middlewares) (poked around in `test/BatchManager-test.js`, but can't see a...

Hi @goatslacker! So I have a logger set up inside an express middleware, logging various things about the request. One bit of information I'd like to add to the logs...

- Switched to nyc from istanbul - Moved coverage report levels (need to investigate why they dropped in some cases) - Changed some test imports to import from `src` rather...

I'm using [`onServer`](https://github.com/airbnb/hypernova/blob/master/src/worker.js#L105) to be able to hook into express before the batch route is added, so I can do something like this: https://stackoverflow.com/a/21858212/4396258 (Context: we want to just restart...

help wanted
documentation

html coverage reports currently show the compiled es5 Would be nice to either: 1. Add sourcemaps to istanbul reports 2. Switch to [nyc](https://github.com/istanbuljs/nyc) and compile on the fly (2 is...

Hi, Consider the following call: ```javascript const renderer = new Renderer({ url: 'http://localhost:8080/batch', }); renderer.render({ Sheep: {}, Cow: {"food": "grass"}, Cow: {"food": "egg salad sandwiches"}, }).then(html => { console.log(html); });...

This is a pretty dumb config option request (maybe there's a custom css option instead?) but it would be nice to change the background color of fluffy - the specific...

server

Stolen shamelessly from https://github.com/Yelp/paasta/pull/1615/files. (Also add argparse to provide a fancy cli help output)