I’m using https://github.com/leangen/graphql-spqr with spring-boot java application. I can reach to alias name easily but how can I reach to original fieldName? When I run this code, Output looks like with alias fields: “aliasNameX”, …, but I need original name like “originalName…
Tag: graphql-spqr
TypeMappingException: Multiple methods detected for operation “opName” with different return types
Working with graphql-spqr and Spring Boot, I’m trying to run the project but I run into this: and I got redirected to this for help : https://github.com/leangen/graphql-spqr/wiki/Errors#operation-with-multiple-resolver-methods-of-different-types I was not having multiple methods with the same name which…
graphql-spqr with Spring Boot and Transactional Boundary
We are using graphql-spqr and graphql-spqr-spring-boot-starter for a new project (With Spring DataJPA, hibernate and so on). We have a mutation like this: This mutation works fine: I have ommitted the variables as they are not important. It does not work if I change it to: I get a LazyInitalizationException a…