Derek Miller

Results 16 comments of Derek Miller

@rmosolgo That would not work in the case where you have many implementations of your proposed `MyNode` interface, but only wanted to support returning a subset of those in a...

Our schema is rather large and we have several connection types. The purpose I originally had for the `Connection` interface is to enforce consistency across them. With that said, I...

Also I want to point out that I hit the same issue when having an `Edge` interface as so: ``` interface Connection { nodes: [Node] edges: [Edge] } interface Edge...

> a union MyNode can be said to implement interface Node IFF each member type in MyNode implements interface Node This is exactly what I was suggesting [graphql-js #1488](https://github.com/graphql/graphql-js/pull/1488), but...

I am willing to champion this change. Let me know what I need to do to progress this to the proposal stage.

@leebyron I updated the issue description. Let me know what the next steps are. It is not clear from the contributing file if the champion is/should be the one to...

@leebyron Any update on how to move this forwards?

@leebyron, Can I get an update on this issue?

@doowb Unfortunately that fix is too simplistic, if the string were `\\\\\\"hello world\\\\"` then the quote would be properly escaped but would still satisfy `string[idx - 1] === '\\' &&...

I missed the checks comment originally. I will update the plugin and rerun the checks.