Results 3 comments of Vijaykumar Pardeshi

No issue with this instrumentation. I'm able to validate queryDepth and queryComplexity with this instrumentation. My requirement is to add instrumentation for number of queries in single request. Trying to...

Asked question here in graphql-java community, https://github.com/graphql-java/graphql-java/discussions/2937 As @bclozel suggested would require to have a cutom implementation by extending the SimpleInstrumentation.

I've implementated the custom instrumentation as below: ```java public class MaxQueryCountInstrumentation extends SimpleInstrumentation { private int maxQueryCount; public MaxQueryCountInstrumentation(int maxqueryCount) { this.maxQueryCount=maxqueryCount; } @Override public InstrumentationContext beginExecuteOperation(InstrumentationExecuteOperationParameters parameters) { int...