Skip to content

Instantly share code, notes, and snippets.

@maniish-jaiin
Last active June 9, 2020 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maniish-jaiin/4632f0d44b0f8142758ce577148045b2 to your computer and use it in GitHub Desktop.
Save maniish-jaiin/4632f0d44b0f8142758ce577148045b2 to your computer and use it in GitHub Desktop.
union SearchResult = User | Company
type User {
name: String
age: Int
}
type Company {
name: String
address: Int
}
type SearchQuery {
firstSearchResult: SearchResult
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment