Skip to content
Snippets Groups Projects
  1. Jun 16, 2023
  2. Apr 20, 2023
  3. Apr 08, 2023
  4. Mar 27, 2023
  5. Mar 16, 2023
  6. Mar 08, 2023
  7. Mar 04, 2023
  8. Feb 28, 2023
  9. Feb 13, 2023
  10. Jan 23, 2023
  11. Jan 18, 2023
  12. Jan 16, 2023
  13. Dec 16, 2022
  14. Dec 08, 2022
  15. Nov 13, 2022
  16. Nov 08, 2022
  17. Sep 29, 2022
  18. Sep 08, 2022
  19. Aug 09, 2022
  20. Jul 20, 2022
  21. Jul 05, 2022
  22. Jul 01, 2022
  23. Jun 10, 2022
  24. May 06, 2022
  25. Apr 30, 2022
  26. Apr 25, 2022
  27. Mar 15, 2022
  28. Mar 14, 2022
  29. Feb 21, 2022
  30. Feb 04, 2022
  31. Jan 11, 2022
  32. Jan 04, 2022
  33. Dec 18, 2021
    • Toan Nguyen's avatar
      docs: update scalar tag documentation (#25) · 3578c9bd
      Toan Nguyen authored
      * update README for scalar tag
      3578c9bd
    • nizar-m's avatar
      Allow tagging of the field as having a scalar GraphQL type (#24) · bcf23de0
      nizar-m authored
      
      * Allow tagging of the field as having a scalar GraphQL type
      
      This change allows us to specify that a field in a struct has a
      scalar GraphQL type associated with it. This is done by adding
      the tag `scalar:"true"` to the field. This would allow us to
      - Avoid expansion of the field during request query generation,
        even when the golang type of the field is a struct
      - When the response is decoded, the value is simply JSON decoded,
        instead of the much stricter GraphQL decode.
      - Types like map[string]interface{}, json.RawMessage, etc should
        work as far as the corresponding fields are marked as scalar
      
      * Handle the error message where we are decoding as json.rawMessage
      
      Co-authored-by: default avatarNizar Malangadan <nizar-m@users.noreply.github.com>
      bcf23de0
  34. Dec 15, 2021