Results 14 comments of Scott

For a temporary work around I'm doing something like this in `routes.ts` ```typescript interface LinkProps { route: string; params?: { [k: string]: string | number }; passHref?: boolean; prefetch?: boolean;...

Do you happen to be using that with InfiniteLoader @gordon-rawe ? I'm in a similar situation where the content is loaded as you scroll up and the height varies a...

Yep this would be really useful

Hi I haven't had any issue using the package to fetch lyrics (last used it ~2 months ago). Could you clarify the issue this PR fixes?

Oh I'm sorry. I just checked the project repo where it worked fine and it was actually Nov 4-5, so a bit more than the 2 months I remembered. Running...

@damianc I guess that works but I feel like it's not what this package is for. @phenax from the title [this repo](https://github.com/morelandjs/IS16) sounds like it does what you need, although...

Since regular functions work as resolvers, e.g.: ``` const allPosts = (_, args, ctx) => { ... }; ``` Is the only purpose of `createResolver` to allow you to compose...

> I also think there is value in handling errors as the "bubble How so? How does it differ from `errorResolver.compose(newResolver)` or using an `errorResolver` as a `baseResolver` with `combineResolvers`?

@thebergamo @thebigredgeek how about Flow instead of TS?

Also, how would you feel about expanding the scope of this project to become more of a library (or very small and fairly unopinionated framework) for building GraphQL server apps...