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

34 lines
551 B
Plaintext
Raw 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
}
"
`;
exports[`nonNullDefaults false/false on type 1`] = `
"type Query {
stringList: [String]
2020-11-28 03:22:48 +08:00
test(test: Int): Boolean
}
"
`;
exports[`nonNullDefaults true/true on schema 1`] = `
"type Query {
stringList: [String!]!
2020-11-28 03:22:48 +08:00
test(test: Int!): Boolean!
}
"
`;
exports[`nonNullDefaults true/true on type 1`] = `
"type Query {
stringList: [String!]!
2020-11-28 03:22:48 +08:00
test(test: Int!): Boolean!
}
"
`;