1. 16 6月, 2020 4 次提交
  2. 05 6月, 2020 1 次提交
  3. 02 6月, 2020 2 次提交
  4. 28 5月, 2020 1 次提交
  5. 27 5月, 2020 1 次提交
  6. 25 5月, 2020 1 次提交
  7. 22 5月, 2020 1 次提交
  8. 20 5月, 2020 3 次提交
  9. 04 5月, 2020 1 次提交
  10. 01 5月, 2020 1 次提交
  11. 29 4月, 2020 1 次提交
  12. 27 4月, 2020 1 次提交
  13. 26 4月, 2020 1 次提交
  14. 25 4月, 2020 6 次提交
  15. 24 4月, 2020 1 次提交
  16. 23 4月, 2020 2 次提交
  17. 22 4月, 2020 1 次提交
    • B
      Refactor document parsing logic (#87) · 8e5d18e6
      Bogdan Kobylynskyi 提交于
      * Support extensions for all GraphQL types #81
      
      * Performance improvement: scan definitions/extensions once #86
      
      * Remove redundant methods from MapperUtils #86
      
      * Fix plugin class names: Graphql -> GraphQL #86
      
      * Fix test class name: GraphQLCodegenExtendTest #86
      
      * Delete GraphqlCodegenExtendTest.java
      8e5d18e6
  18. 21 4月, 2020 1 次提交
  19. 11 4月, 2020 1 次提交
  20. 10 4月, 2020 1 次提交
    • B
      Fix GraphQL query serialization and add Gradle plugin for client-codegen #37 (#59) · 7ab8cc84
      Bogdan Kobylynskyi 提交于
      * Introduce codegen for client code - Part 1. #37
      
      * Remove redundant null-checks
      
      * Minor fixes in Request class generation + improve code coverage. #37
      
      * Customizable suffix of ResponseProjection classes. #37
      
      * Code coverage for MappingConfig #37
      
      * Fix method names #37 #53
      
      * Add codegen properties to GraphqlCodegenGradleTask #37
      
      * Rename example module to example-server #37
      
      * Change example-server project for gradle plugin #37
      
      * Add GraphQLResult class which holds response data+errors #37
      
      * Fix GraphQLRequestSerializer #37
      
      * Add example-client project for gradle plugin #37
      
      * Add example-client project to CI and README.md #37
      
      * Code coverage for GraphQLResult #37
      
      * Downgrade all dependencies level to 'implementation' #37
      
      * Fix GraphQL query characters escape + fix errors serialization #37
      
      * Fix GraphQL request serialization #37
      
      * Fix toString() generation for request input classes #37
      
      * Remove redundant apache-commons dependency #37
      
      * Use jackson lib to construct GraphQL query json #37
      7ab8cc84
  21. 09 4月, 2020 1 次提交
  22. 08 4月, 2020 2 次提交
  23. 07 4月, 2020 1 次提交
    • B
      Introduce codegen for client code - Part 1. #37 (#53) · d8073a92
      Bogdan Kobylynskyi 提交于
      * Introduce codegen for client code - Part 1. #37
      
      * Remove redundant null-checks
      
      * Minor fixes in Request class generation + improve code coverage. #37
      
      * Customizable suffix of ResponseProjection classes. #37
      
      * Code coverage for MappingConfig #37
      
      * Fix method names #37 #53
      d8073a92
  24. 04 4月, 2020 1 次提交
  25. 01 4月, 2020 2 次提交
  26. 30 3月, 2020 1 次提交
    • J
      Parse all schemas as one Document (#28) · d31f5e12
      Joffrey Bion 提交于
      This makes use of the MultiSourceReader provided by the graphQL library.
      Using this reader allows to read a single document from multiple files,
      while correctly associating line numbers and errors to their original
      source file.
      
      This doesn't bring any overhead because the method Parser.parseDocument(String) that was previously used already created a MultiSourceReader itself.
      Note that the previous method didn't associate the source file name with the content used for parsing, while the new one does.
      
      It allows to solve cross-reference problems with union types for instance.
      
      Resolves:
      https://github.com/kobylynskyi/graphql-java-codegen/issues/27Co-authored-by: NJoffrey Bion <joffrey.bion@booking.com>
      d31f5e12