123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`fields.graphql 1`] = `
- query MyFirstQuery {
- hello
- }
- mutation
- MyFirstMutation {
- world
- }
- subscription, ThisIsASub, {
- excellent
- }
- , query, ThisIsASub, {
- excellent
- }
- query {
- noName
- }
- {
- noOperationType
- }
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- query MyFirstQuery {
- hello
- }
- mutation MyFirstMutation {
- world
- }
- subscription ThisIsASub {
- excellent
- }
- query ThisIsASub {
- excellent
- }
- query {
- noName
- }
- {
- noOperationType
- }
- `;
|