nexus/tests/v15/__snapshots__/modify-v15.spec.ts.snap

32 lines
514 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`modify interfaces implementing interfaces should output a valid schema 1`] = `
"### This file was generated by Nexus Schema
### Do not make changes to this file directly
interface Pet {
mother: Pet
}
interface Equine implements Pet {
mother: Pet
}
type Horse implements Equine & Pet {
mother: Equine
}
type Donkey implements Equine & Pet {
mother: Equine
}
type Mule implements Equine & Pet {
mother: Equine
}
type Query {
ok: Boolean!
}"
`;