Created
June 19, 2019 12:14
-
-
Save dotansimha/8550982812834db6140e65f9e63d840f 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
type Query { | |
me: User! | |
} | |
interface Node { | |
id: ID! | |
} | |
type User implements Node { | |
id: ID! | |
username: String! | |
email: String! | |
name: String | |
} | |
type Chat implements Node { | |
id: ID! | |
users: [User!]! | |
title: String | |
} | |
union SearchResult = Chat | User |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment