Nick Tomlin

Results 35 comments of Nick Tomlin

I don't think this is limited to mutations, i'm seeing this on Queries as well. I've copied the example from https://github.com/graphql-java-kickstart/graphql-java-tools/commit/0162621251c0598a15671fcac8c181c5c7e76b1c into an [example](https://github.com/NickTomlin/spring-graphql-playground/commit/5262e11077f73f428bf1389269febda5d16a6e2e) and I get a similar error:...

@oliemansm Here's a small [repo](https://github.com/NickTomlin/spring-graphql-playground/tree/graphql-tools-error) that reproduces there error with `./gradlew bootRun` There's a single [schema](https://github.com/NickTomlin/spring-graphql-playground/blob/graphql-tools-error/src/main/resources/schema/application.graphqls) (copied from the the original unit test) and a single [resolver](https://github.com/NickTomlin/spring-graphql-playground/blob/graphql-tools-error/src/main/java/com/ntomlin/subgql/resolvers/Query.java)

@oliemansm ah, great catch! I've updated the fields to `public` and things are working. I'm not quite sure if there's a good way to handle this though, perhaps the schema...

I've been bitten by this recently as well. @bsara approach does work, but only if `fetchPolicy: "no-cache"` is specified; . apparently this is a known limitation/bug that hasn't been [fixed...

Could I get either of you to create a small repository that reproduces the issue? I personally don't use angular-cli so that would make the problem/use case easier to understand....

Unfortunately I still don't understand the use case and I don't have time right now to create a custom builder. I'd welcome a pull request for one though since it...

Hi There, We don't have anything specific for mocha screenshots but we'll have a fix for mocha support soon (work ongoing in https://github.com/NickTomlin/protractor-flake/pull/60). That should allow things to work in...

What my expectation would be is: 1. initial run: all tests targeted are run (since no suites are provided by default) - spec1, spec3 and spec 4 pass - spec...

I think the issue here is actually jasmine fail fast. Protractor flake assumes that your test run is going to run all tests and only pass it the failures. If...

Unfortunately this is not possible without using a custom reporter; the stacktraces for timeouts don't include the path to the source spec in them if I remember correctly. You could...