Created
May 7, 2019 18:57
-
-
Save valikos/281bd2ec5028f5435eaf7e5734ed6de2 to your computer and use it in GitHub Desktop.
gql-union
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
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