Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Last active May 30, 2019 20:46
Show Gist options
  • Save haldarmahesh/8387f0fe8c909be6832ffdf3a73230c6 to your computer and use it in GitHub Desktop.
Save haldarmahesh/8387f0fe8c909be6832ffdf3a73230c6 to your computer and use it in GitHub Desktop.
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