Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created April 7, 2016 15:01
Show Gist options
  • Save clayallsopp/7dc6d6b8f1a50cc1ef26f5d4808b65b8 to your computer and use it in GitHub Desktop.
Save clayallsopp/7dc6d6b8f1a50cc1ef26f5d4808b65b8 to your computer and use it in GitHub Desktop.
interface Searchable {
searchPreviewText: String!
}
type User implements Searchable {
searchPreviewText: String!
username: String!
}
type Movie implements Searchable {
searchPreviewText: String!
directory: String!
}
type Book implements Searchable {
searchPreviewText: String!
author: String!
}
type Query {
search(text: String!): [Searchable]!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment