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

21 lines
626 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`hello.graphql 1`] = `
{
short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!")
long(var: $thisIsAReallyLongVariableNameRight, int: 52342342342, float: 5.6, bool: true, string: "hello world this is a very long string!")
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
2017-06-06 08:26:35 +03:00
short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!")
long(
var: $thisIsAReallyLongVariableNameRight,
int: 52342342342,
float: 5.6,
bool: true,
string: "hello world this is a very long string!"
)
}
`;