Skip to content

Instantly share code, notes, and snippets.

@ridhoperdana
Created September 23, 2019 02:25
Show Gist options
  • Select an option

  • Save ridhoperdana/913e09e413ca81b428390c6a71045046 to your computer and use it in GitHub Desktop.

Select an option

Save ridhoperdana/913e09e413ca81b428390c6a71045046 to your computer and use it in GitHub Desktop.
type Query {
FetchArticle(after: String, first: Int): ArticlesResult
GetArticleByID(id: Int): Article
GetArticleByTitle(title: String): Article
}
type Mutation {
UpdateArticle(id: Int, title: String, content: String): Article
StoreArticle(title: String, content: String): Article
DeleteArticle(id: Int): Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment