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

21 lines
475 B
Plaintext
Raw Permalink Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`makeSchema directives can specify custom directives 1`] = `
"directive @customDirective(code: Int = 42) on FRAGMENT_DEFINITION
type Query {
ok: Boolean!
}"
`;
exports[`makeSchema shouldExitAfterGenerateArtifacts accepts a customPrintSchemaFn 1`] = `
2020-04-07 23:14:08 +08:00
"### This file was generated by Nexus Schema
### Do not make changes to this file directly
type Query {
2022-02-18 01:47:40 +08:00
\\"\\"\\"Example boolean field\\"\\"\\"
ok: Boolean
2022-02-18 01:47:40 +08:00
}"
`;