Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 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. locations
  13. args {
  14. ...InputValue
  15. }
  16. }
  17. }
  18. }
  19.  
  20. fragment FullType on __Type {
  21. kind
  22. name
  23. description
  24. fields(includeDeprecated: true) {
  25. name
  26. description
  27. args {
  28. ...InputValue
  29. }
  30. type {
  31. ...TypeRef
  32. }
  33. isDeprecated
  34. deprecationReason
  35. }
  36. inputFields {
  37. ...InputValue
  38. }
  39. interfaces {
  40. ...TypeRef
  41. }
  42. enumValues(includeDeprecated: true) {
  43. name
  44. description
  45. isDeprecated
  46. deprecationReason
  47. }
  48. possibleTypes {
  49. ...TypeRef
  50. }
  51. }
  52.  
  53. fragment InputValue on __InputValue {
  54. name
  55. description
  56. type { ...TypeRef }
  57. defaultValue
  58. }
  59.  
  60. fragment TypeRef on __Type {
  61. kind
  62. name
  63. ofType {
  64. kind
  65. name
  66. ofType {
  67. kind
  68. name
  69. ofType {
  70. kind
  71. name
  72. ofType {
  73. kind
  74. name
  75. ofType {
  76. kind
  77. name
  78. ofType {
  79. kind
  80. name
  81. ofType {
  82. kind
  83. name
  84. }
  85. }
  86. }
  87. }
  88. }
  89. }
  90. }
  91. }
Add Comment
Please, Sign In to add comment