Skip to content

Instantly share code, notes, and snippets.

@karthikraobr
Created January 2, 2019 12:35
Show Gist options
  • Save karthikraobr/86202b3c062fe5b14d559e79b5e26421 to your computer and use it in GitHub Desktop.
Save karthikraobr/86202b3c062fe5b14d559e79b5e26421 to your computer and use it in GitHub Desktop.
type BlogPost {
id: Int!
title: String!
authors: [Authors!]
}
type Author {
id: Int!
name: String!
blogPosts: [BlogPost!]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment