Created
April 7, 2016 15:01
-
-
Save clayallsopp/7dc6d6b8f1a50cc1ef26f5d4808b65b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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