jsfmt.spec.js.snap 541 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`fields.graphql 1`] = `
  3. query MyFirstQuery {
  4. hello
  5. }
  6. mutation
  7. MyFirstMutation {
  8. world
  9. }
  10. subscription, ThisIsASub, {
  11. excellent
  12. }
  13. , query, ThisIsASub, {
  14. excellent
  15. }
  16. query {
  17. noName
  18. }
  19. {
  20. noOperationType
  21. }
  22. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  23. query MyFirstQuery {
  24. hello
  25. }
  26. mutation MyFirstMutation {
  27. world
  28. }
  29. subscription ThisIsASub {
  30. excellent
  31. }
  32. query ThisIsASub {
  33. excellent
  34. }
  35. query {
  36. noName
  37. }
  38. {
  39. noOperationType
  40. }
  41. `;