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

37 lines
470 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`fragments.graphql 1`] = `
{
field
... XYZ
... on TheType {
...AFragment
... {
noTypeCondition
}
}
}
fragment XYZ on ABC {
field
...AFragment
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
field
...XYZ
... on TheType {
...AFragment
... {
noTypeCondition
}
}
}
fragment XYZ on ABC {
field
...AFragment
}
`;