Michael Schäfer

Results 4 comments of Michael Schäfer

[Spring GraphQL](https://docs.spring.io/spring-graphql/docs/1.0.0-SNAPSHOT/reference/html/#data) support **Querydsl** and **Query by Example** but only for GraphQL ``query`` operations. GraphQL ``mutation`` operations which used to change data - create, update and delete - are not...

Yes, I understand!! Reading and writing should have been taken into account right from the start, because both Query DSL and Query by Example support both, or am I wrong?...

@jord1e Thank you for the explanation, the links to the discussions and the workaround. The topic of mutations and transactions can certainly be discussed in a differentiated manner. And there...

The instrumentation class ``MaxQueryComplexityInstrumentation`` implements the graph complexity functionality and is added by the ```GraphQLInstrumentationAutoConfiguration``` ```java @Bean @ConditionalOnMissingBean @ConditionalOnProperty(value = "graphql.servlet.max-query-complexity") public MaxQueryComplexityInstrumentation maxQueryComplexityInstrumentation() { return new MaxQueryComplexityInstrumentation(maxQueryComplexity); } ```...