30 lines
547 B
Plaintext
30 lines
547 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`nonNullDefaults false/false on schema 1`] = `
|
|
"type Query {
|
|
stringList: [String]
|
|
test(test: Int): Boolean
|
|
}"
|
|
`;
|
|
|
|
exports[`nonNullDefaults false/false on type 1`] = `
|
|
"type Query {
|
|
stringList: [String]
|
|
test(test: Int): Boolean
|
|
}"
|
|
`;
|
|
|
|
exports[`nonNullDefaults true/true on schema 1`] = `
|
|
"type Query {
|
|
stringList: [String!]!
|
|
test(test: Int!): Boolean!
|
|
}"
|
|
`;
|
|
|
|
exports[`nonNullDefaults true/true on type 1`] = `
|
|
"type Query {
|
|
stringList: [String!]!
|
|
test(test: Int!): Boolean!
|
|
}"
|
|
`;
|