Skip to content

Instantly share code, notes, and snippets.

@valikos
Created May 7, 2019 18:57
Show Gist options
  • Save valikos/281bd2ec5028f5435eaf7e5734ed6de2 to your computer and use it in GitHub Desktop.
Save valikos/281bd2ec5028f5435eaf7e5734ed6de2 to your computer and use it in GitHub Desktop.
gql-union
union Result = Character | Land | Building
type Character {
firstName: String!
}
type Building {
type: String!
}
type Land {
name: String!
}
type Query {
search: [Result]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment