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

32 lines
769 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`fields.graphql 1`] = `
====================================options=====================================
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
{
posts {, title, votes, author {, firstName, posts {, author { firstName } }
}}
}
=====================================output=====================================
{
posts {
title
votes
author {
firstName
posts {
author {
firstName
}
}
}
}
}
================================================================================
`;