Kavitha Srinivasan
Kavitha Srinivasan
Hi @lthoulon-locala - unfortunately we are not able to reproduce this issue either. If you have a branch or a test case that can reproduce this, we can dig into...
I don't think this addresses the issue you are experiencing, but can you retest with the latest DGS release? We changed the way data loaders are implemented here: https://github.com/Netflix/dgs-framework/releases/tag/v8.7.1 For...
Per the docs here: https://netflix.github.io/dgs/generating-code-from-schema/#client-api-v2 You are missing an additional `` for the ProjectionRoot. ``` String query = new GraphQLQueryRequest( new MoviesGraphQLQuery(), new MoviesProjectionRoot().movieId()).serialize(); ```
Ok, after lookingcloser, the error is in the generated classes. My guess is that somehow you are missing the `com.netflix.graphql.dgs.codegen:graphql-dgs-codegen-shared-core` in your deps which should be brought in by codegen....
Hi @annarafaeladev - we don't support the maven port of codegen here. Please try https://github.com/deweyjose/graphqlcodegen for help with this issue.
Thanks for creating this issue. Will fix in the next release.
You can extract the argument as a MultipartFile as shown here: ``` @DgsData(parentType = DgsConstants.MUTATION.TYPE_NAME, field = "uploadScriptWithMultipartPOST") public boolean uploadScript(DataFetchingEnvironment dfe) throws IOException { // NOTE: Cannot use @InputArgument...
I suppose we went with capitalizing the parent types and the field names are all lower case for readability. No other strong arguments one way or another. However, since it...
@hzariv - how did you install the MeterFilter? Per this discussion here, you mentioned you couldn't accomplish that because the MeterRegistry bean cannot be customized because DgsMeterRegistrySupplier is internal: https://github.com/Netflix/dgs-framework/discussions/1986#discussioncomment-10330913