prettier/tests/graphql_definitions/__snapshots__/jsfmt.spec.js.snap

54 lines
541 B
Plaintext

// 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
}
`;