How to get the generated scheme file .graphqls using SPQR?
问题 I really like the way SPQR makes easy to integrate graphql with an existing system, the only thing I'd like to see is the .graphqls file so I can learn more on GraphQL Syntax. Is there a way to generate the scheme file from an existing code with SPQR annotations integrated? To provide some code let's use the same code from the GitHub site Entity: public class User { private String name; private Integer id; private Date registrationDate; @GraphQLQuery(name = "name", description = "A person's