Skip to content

Instantly share code, notes, and snippets.

@dsandip
Last active June 8, 2018 13:55
Show Gist options
  • Save dsandip/ac91835d38846c261b6095e740ee1e89 to your computer and use it in GitHub Desktop.
Save dsandip/ac91835d38846c261b6095e740ee1e89 to your computer and use it in GitHub Desktop.
schema for a blog app's database
const typeDefs = `
type Query {
author(firstName: String, lastName: String): Author
allAuthors: [Author]
allArticles: [Article]
}
type Author {
id: Int
firstName: String
lastName: String
articles: [Article]
}
type Article {
id: Int
title: String
text: String
views: Int
author: Author
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment