Skip to content

Instantly share code, notes, and snippets.

@valikos
Created May 7, 2019 19:31
Show Gist options
  • Save valikos/719a7dca18ba5c7a0fb5d12c2933d1d3 to your computer and use it in GitHub Desktop.
Save valikos/719a7dca18ba5c7a0fb5d12c2933d1d3 to your computer and use it in GitHub Desktop.
interface Node {
id: ID!
}
interface Person {
firstName: String!
lastName: String
}
type Character implements Node & Person {
id: ID!
firstName: String!
lastName: String
}
type Land implements Node {
id: ID!
name: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment