Add states field to country

This commit is contained in:
Trevor Blades
2020-02-02 15:27:41 -08:00
parent 44211746b9
commit 4320bd639b
4 changed files with 30 additions and 5 deletions

View File

@@ -17,6 +17,13 @@ export default gql`
languages: [Language]
emoji: String
emojiU: String
states: [State]
}
type State {
code: String
name: String
country: Country
}
type Language {