Mike Lawlor
Mike Lawlor
Thanks for the reply @AlexRiedler Actually as I understand it the "templates" directory is added to the asset pipeline automatically by handlebars_assets, and that is what the `HandlebarsAssets::Config.path_prefix` option is...
Ah I see thanks for the clarification. I'm a bit new to this codebase, just looking at it for the first time today. So I got a little bit further...
Thank you for the response, I appreciate the transparency. I see you've tagged this as "needs more info" so I wanted to offer to answer any questions you may have...
I recommend checking out [@serverless/typescript](https://github.com/serverless/typescript) and the `aws-nodejs-typescript` serverless template. They seem to be well supported and actively developed. Here's a great overview of getting a serverless typescript application up...
Thanks Dan! In the meantime, I've implemented my user graph directly via Redis commands, more or less as described in this Redis Cookbook recipe: http://rediscookbook.org/implement_a_social_graph.html However I would obviously prefer...
As a new urql user coming from the Apollo ecosystem, this is a major missing piece in the urql system. I relied heavily on the cache inspection tab of the...
@andyrichardson coming from the apollo world, their devtools permit you to view and search the entire normalized cache. So for example if there's a specific "User" that is reused across...
I'm having the same issue. Definitely seems to be due to the introspection query that `devtoolsExchange` runs because when I disable that exchange the error disappears. Had a look at...
Ah I see the logic changed to use a regex that should match any fieldName beginning with `__` For reference, here's the complete error I'm seeing: ``` Unhandled Rejection (Graphcache...
Perhaps the problem isn't with the `__schema` field, but rather with the `__typename: "__Schema"` in the introspection query response?