Guest User

Untitled

a guest
Oct 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. query IntrospectionQuery {
  2. __schema {
  3. queryType { name }
  4. mutationType { name }
  5. subscriptionType { name }
  6. types {
  7. ...FullType
  8. }
  9. directives {
  10. name
  11. description
  12. args {
  13. ...InputValue
  14. }
  15. }
  16. }
  17. }
  18.  
  19. fragment FullType on __Type {
  20. kind
  21. name
  22. description
  23. fields(includeDeprecated: true) {
  24. name
  25. description
  26. args {
  27. ...InputValue
  28. }
  29. type {
  30. ...TypeRef
  31. }
  32. isDeprecated
  33. deprecationReason
  34. }
  35. inputFields {
  36. ...InputValue
  37. }
  38. interfaces {
  39. ...TypeRef
  40. }
  41. enumValues(includeDeprecated: true) {
  42. name
  43. description
  44. isDeprecated
  45. deprecationReason
  46. }
  47. possibleTypes {
  48. ...TypeRef
  49. }
  50. }
  51.  
  52. fragment InputValue on __InputValue {
  53. name
  54. description
  55. type { ...TypeRef }
  56. defaultValue
  57. }
  58.  
  59. fragment TypeRef on __Type {
  60. kind
  61. name
  62. ofType {
  63. kind
  64. name
  65. ofType {
  66. kind
  67. name
  68. ofType {
  69. kind
  70. name
  71. }
  72. }
  73. }
  74. }
Add Comment
Please, Sign In to add comment