Skip to content

Instantly share code, notes, and snippets.

@cuongld2
Created March 30, 2020 02:12
Show Gist options
  • Save cuongld2/ebe61f9b9ff4cf227e59152646d37a24 to your computer and use it in GitHub Desktop.
Save cuongld2/ebe61f9b9ff4cf227e59152646d37a24 to your computer and use it in GitHub Desktop.
define schema blog
type Blog {
id: Int,
title: String,
content: String
}
type Query {
blogs(count: Int):[Blog]
blog(id: Int):Blog
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment