fields.graphql 260 B

123456789101112131415161718192021222324252627282930313233343536
  1. query MyFirstQuery {
  2. # comment
  3. field {
  4. subfield
  5. # comment
  6. subfield
  7. }
  8. field
  9. #comment
  10. field
  11. }
  12. mutation MyFirstMutation {
  13. # comment
  14. name
  15. comment # comment
  16. kind
  17. }
  18. subscription MySubscription {
  19. name
  20. comment
  21. kind
  22. }