Brad Baker
Brad Baker
Sounds like a possible big in the IntrospectionResultToSchema() code. Would you be able to supply a simplified test case we can help to track this down with. For example the...
> I'd like to detect that ... on Cat and ...on Dog subtrees are alternatives, calculate the complexity for both and pick only the most expensive one, but that doesn't...
Can you please outline the schema in play here. We have part of the puzzle but not enough for a reproduction
I write the PR to prove it works for master (post 16.2) https://github.com/graphql-java/graphql-java/pull/2456 Maybe its broken in 16.2 or below?? Can you give us more versions details and reproduction steps
I am happy to have a specific "local context" starting value. The previous situation where we moved the global context object to the local was a wrong decision and hence...
Your are using I guess graphql-java-kickstart because I can see `GraphQLResolver` classes which are not in the base graphql-java lib. you might want to ask this also over at https://github.com/graphql-java-kickstart...
One of the design goals of graphql-java is to be a graphql engine only. This means it can be used in the widest possible way. We are used in servers,...
Relay is a specification for pagination : https://facebook.github.io/relay/docs/en/graphql-server-specification.html https://facebook.github.io/relay/graphql/connections.htm You need to create "types" that match the relay shape as proscribed by the Relay spec. Then as you say you...
Perhaps - I cant see enough of your code. The trick with connections is you need the `last/first` arguments from the DataFetcherEnvironment so you can "page your data". SimpleListConnection works...
Can you tell us more about your @FeatureFlag directive? What behaviour do you want? ``` query { someField @FeatureFlag someOtherField } ``` What happens when feature flag is present??