nexus/tests/__snapshots__/nonNullDefaults.spec.ts.snap

30 lines
547 B
Plaintext
Raw Permalink Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`nonNullDefaults false/false on schema 1`] = `
"type Query {
stringList: [String]
2020-11-28 03:22:48 +08:00
test(test: Int): Boolean
2022-02-18 01:47:40 +08:00
}"
`;
exports[`nonNullDefaults false/false on type 1`] = `
"type Query {
stringList: [String]
2020-11-28 03:22:48 +08:00
test(test: Int): Boolean
2022-02-18 01:47:40 +08:00
}"
`;
exports[`nonNullDefaults true/true on schema 1`] = `
"type Query {
stringList: [String!]!
2020-11-28 03:22:48 +08:00
test(test: Int!): Boolean!
2022-02-18 01:47:40 +08:00
}"
`;
exports[`nonNullDefaults true/true on type 1`] = `
"type Query {
stringList: [String!]!
2020-11-28 03:22:48 +08:00
test(test: Int!): Boolean!
2022-02-18 01:47:40 +08:00
}"
`;