string.graphql 532 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. query X($a: Int) @relay(meta: "{\"lowPri\": true}") { a }
  2. """abc"""
  3. type T {
  4. a: Int
  5. }
  6. """
  7. abc
  8. """
  9. type T {
  10. a: Int
  11. }
  12. """
  13. a
  14. b
  15. c
  16. """
  17. type T { a: Int }
  18. type Foo {
  19. """
  20. This is a description
  21. of the `one` field.
  22. """
  23. one: Type
  24. }
  25. type Foo {
  26. q("docs" field: String): Type
  27. q("A long string of description of the field parameter to make this break" field: String): Type
  28. q("""docs""" field: String): Type
  29. }
  30. enum Enum {
  31. """
  32. Description of `one`
  33. """
  34. one
  35. }
  36. input Input {
  37. """
  38. Description of `one`
  39. """
  40. one: string
  41. }