Last active
May 30, 2019 20:46
-
-
Save haldarmahesh/8387f0fe8c909be6832ffdf3a73230c6 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 Actor { | |
id: String!, # `!` represents required | |
name: String!, | |
age: Int! | |
} | |
type Movie { | |
id: String!, | |
name: String!, | |
releaseYear: Int!, | |
actors: [Actor] # Actor is another type and [] represents array of | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment