Skip to content

Instantly share code, notes, and snippets.

@pechitook
Created October 9, 2016 23:07
Show Gist options
  • Save pechitook/bbbdb92c48b66a2e463a752061523d00 to your computer and use it in GitHub Desktop.
Save pechitook/bbbdb92c48b66a2e463a752061523d00 to your computer and use it in GitHub Desktop.
export default `
type Author {
id: Int!
firstName: String
lastName: String
posts: [Post]
}
type Post {
id: Int!
tags: [String]
title: String
text: String
author: Author
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment