fields.graphql 193 B

12345678910111213141516171819202122232425
  1. query MyFirstQuery {
  2. hello
  3. }
  4. mutation
  5. MyFirstMutation {
  6. world
  7. }
  8. subscription, ThisIsASub, {
  9. excellent
  10. }
  11. , query, ThisIsASub, {
  12. excellent
  13. }
  14. query {
  15. noName
  16. }
  17. {
  18. noOperationType
  19. }