Guest User

Untitled

a guest
Dec 12th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. fragment typeField on __Type {
  2. name
  3. fields {
  4. name
  5. }
  6. }
  7. query roots {
  8. __schema {
  9. queryType{
  10. ...typeField
  11. }
  12. mutationType {
  13. ...typeField
  14. }
  15. subscriptionType{
  16. ...typeField
  17. }
  18. }
  19. }
Add Comment
Please, Sign In to add comment