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

44 lines
843 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`fragments.graphql 1`] = `
====================================options=====================================
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
{
field
... XYZ
... on TheType {
...AFragment
... {
noTypeCondition
}
}
}
fragment XYZ on ABC {
field
...AFragment
}
=====================================output=====================================
{
field
...XYZ
... on TheType {
...AFragment
... {
noTypeCondition
}
}
}
fragment XYZ on ABC {
field
...AFragment
}
================================================================================
`;