Kyle Brooks
Kyle Brooks
If there are no objections to adding this functionality I can give it a shot myself.
This is a pretty syntactically complex feature to generate; it might not be worth supporting
@jxnu-liguobin This PR causes test builds to fail on Java 11
Yes On Sat, Aug 14, 2021 at 02:11 梦境迷离 ***@***.***> wrote: > [image: image] > > > is this one? > > — > You are receiving this because you...
I dug into this issue and found that it's due to the [federated schema factory](https://github.com/nestjs/graphql/blob/e1f46a4dbb00d5e3dceace5b08b76e5f077f67dd/packages/graphql/lib/federation/graphql-federation.factory.ts#L117-L117) using [printSubgraphSchema](https://github.com/apollographql/federation/blob/main/subgraph-js/src/printSubgraphSchema.ts) from `@apollo/subraph`, while the [default schema factory](https://github.com/nestjs/graphql/blob/e1f46a4dbb00d5e3dceace5b08b76e5f077f67dd/packages/graphql/lib/graphql.factory.ts#L51-L51) uses [makeExecutableSchema](https://github.com/ardatan/graphql-tools/blob/master/packages/schema/src/makeExecutableSchema.ts) from `graphql-tools`. `makeExecutableSchema` takes...
Here is a patch you can apply which creates two test cases you can use to debug the issue [repro.patch](https://github.com/nestjs/graphql/files/12622037/repro.patch) The reason I believe it is related to resolvers is...
I was able to add coverage back into my sharded tests on Jenkins using [istanbuljs/nyc](https://github.com/istanbuljs/nyc) with the following approach: 1. Run sharded tests on `n` different CI executors 1. Run...
You can automatically substitute the paths in your runner script like this: ``` find final-coverage-files -type f -exec sed -i 's_/absolute/path/inside/your/ci/runner'$(pwd)'_g' {} + ```
Also I'm willing to contribute this feature if the project leaders think it is a good idea.
According to the docs there is already a feature like this > To exclude all specs with the word “dialog” in the spec file names, you could use: > >...