Ryan Bonte

Results 28 comments of Ryan Bonte

I am using another WASM build now. Apparently this build does not output continuation information. I'll try to recompile with this output (requires some tweaks in C) to see if...

@gaearon with the `use` RFC https://github.com/reactjs/rfcs/pull/229 it seems this topic is relevant once more. How would I for example cancel an Axios promise (cancellation is something Axios already supports today)...

It would be nice to add a `condense` or `minify` flag to this feature to remove excess whitespace. Perhaps that should be passed to the `toString` function or applied on...

@jnwng will this PR ever move anywhere?

Would changing the naming in combination with https://github.com/graphql/graphql-js/issues/1523 feature help resolve those concerns?

Here's a proposal: ```js var stripIgnoredCharacters = require('graphql').stripIgnoredCharacters; // ... parsed.toStrippedString = function() { return stripIgnoredCharacters(this); }; ``` Requires graphql-js 14.3.0

My proposal as a PR: https://github.com/apollographql/graphql-tag/pull/260

If it's any help, I managed to add this feature to `babel-plugin-graphql-tag`: https://github.com/gajus/babel-plugin-graphql-tag/pull/31 I believe it achieves the same thing as this PR, only difference is the GraphQL string literals...