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

25 lines
413 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`fields.graphql - graphql-verify 1`] = `
{
posts {, title, votes, author {, firstName, posts {, author { firstName } }
}}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
posts {
title
votes
author {
firstName
posts {
author {
firstName
}
}
}
}
}
`;